Hi, I’m trying to fetch all my table records that has a 500 columns inside but in this json result view it only fetch a random of 100 records in my existing table.
Here is my code. Thank you
//base1
const MY_API_KEY = “API_KEY”;
const AIRTABLE_BASE = “BASE_2”; //base 2
const results = await remoteFetchAsync(AIRTABLE_BASE+?api_key=${MY_API_KEY})
const data = await results.json()
// for(let view of data.fields){
// console.log(view);
// }
console.log(data);
