The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hi, I’m having trouble passing an object from React to Express, and then creating an airtable record in Express.
In react, i am sending an http request to Express via:
finalSubmit() {
const airtableObj = {
title: ‘hi’,
}
fetch(‘api/submit’,{
method:...
thanks for the reply! i didn’t know that caching was implemented.
You are correct that the offset property hasn’t been implemented for node.js, but I don’t think it is actually required based on Evan’s response here:
github.com/Airtable/air...
Ah yes, I found that. It will return paginated data, but it seems to me like it still requires you to retrieve every single record of the table at the get-go.
So if you have 5000 records, it will need to keep calling fetchNextPage() until all 5000 re...