I know that this can be done using airtable.js.
base(‘collab DB’).select({ view: ‘collab 5.0 korea’ })
.eachPage(
(records, fetchNextPage) => {
//all this is to solve for a problem when I have more than 100 items
allStartups = [
records,
…allStartups]
.reduce((acc , cv) => {
return acc.concat(cv)
})
fetchNextPage();
I have done it and it works. However I would prefer to do it using axios. Again, any help here?