Does the Airtable node support pagination?

Hi, n8n community! n8n is great!

I was going through the airtable API documentation and it mentions that the server returns one page of records at a time and return an offset field if there are more records left to fetch. You then send it as a parameter in your next GET request.

Does the Airtable node have support for this baked in (for example the “List” operation?) or do I need to manually get around this behaviour with the HTTP Request and I dunno, maybe the Split Batches node?

Thanks!

@der-ofenmeister, welcome to the community.

Yes, the node does the pagination for you. Just make sure that the parameter returnAll is set to true.

Thank you!