The Community will be undergoing maintenance on Friday January 10 at 2:00pm - Saturday January 11 at 2:00pm EST, and will be "read-only." For assistance during this time, please visit our Help Center.
Hi there! I’m getting a bunch of records using the API and I would like to paginate the results - in the end, I’d like to display to the user 10 records on a page, then when they hit ‘Next Page’ I can show them the next 10, and so on, requesting the ...
Ah ok - I can add memoization to save the previous results. However, I think I’m in a bind calling fetchNextPage(). My airtable has a couple of tables where the records of one are needed to fetch the records of another. Using async.waterfall, I’m cal...
Ah ok, I think i understand it more - i had a callback in the done() that was necessary to render the information, but I moved that callback into the eachPage() itself (after looping through the records) and that seems fine.
Now I have two more quest...
I figured out a way to do both multiple text values (my previous question) AND also grab linked records.
Multiple text values:
Just use a comma separated list of strings (i.e. “apples,bananas”). I was able to use this to filter records by multiple va...
Oh - what’s the syntax for grabbing multiple text values? I also have a column with linked records but I’m wondering if I can just flatten that table to get around this.
Good to know that you’re expanding on retrieving linked records is in the roadmap.
I’m curious, is it possible to retrieve multiple records in on API call? If so, how would I make that call?