ToolJet
ToolJet copied to clipboard
Airtable Listing Records - Pagination Not Working
Version Information
1.20.4 version
Environment
Docker
What is the expected behaviour?
Expecting the table component to display all the records from Airtable table using the Listing Records query after providing the offset using {{queries.airtable1.rawData.offset}}
What is the current behaviour?
The table component is only showing 100 records. Even changing to sever side pagination it is still the same.
How to reproduce the issue?
- Create an Airtable Listing Records query
- Enable Transformation
return data.records.map(row => { let obj = {} obj.fields = row.fields obj.fields.id = row.id return obj.fields }); - Enter {{queries.airtable1.rawData.offset}} as the offset
- Save and Execute
- Bind the query to the Table component