Here’s a shim you can put in your code to provide findAll behavior…
Find this part
const Airtable = require("Airtable");
/* HERE */
Airtable.configure({...});
And add the base_with_find_all function.
const Airtable = require("airtable");
base_wit...
This strategy still doesn’t seem to work on my end. Here’s a complete example to demonstrate. Am I doing something wrong on my end?
function timeout(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function test() {
output...