Hi all,
I have 5000 records and there is one deleted that I need to find.
I loop over the the records IDs 100 at a time to see if I get all 100 returned.
On this forum I found 2 approaches using filterByFormula to get multiple records for multiple IDs
filterByFormula = 'SEARCH(RECORD_ID(), "'.implode($ids, ',').'") != ""'
filterByFormula: "OR(RECORD_ID() = 'reca9IDlX0gvu32ml', RECORD_ID() = 'recgh3XeMcdmX8uPj', ...)"
some questions
- is this the best way to find deleted records
- should I use filterByFormula, and if so, which formula is “lighter” for airtable to process
- should I use a different kind of filter (AFAIK the batch API is only meant for create / update / delete and not for reading)
Greetings,
PJ