So, I need to query AirTable in my Node app to only return records that match a given field value.
My query looks kind of like this:
await base(baseName).select({
fields: […],
maxRecords: 100,
filterByFormula: “?”
});
Here’s the catch. In the filterB...