Hey all. I’m tasked with doing some automation of a few processes. As part of this task, I need to create several records in an AirTable base.
I’m using AirtablJS, with typescript typings from DefinitelyTyped. I was wondering how I can create multiple records with one request.
I saw on the API docs that I can just pass an array of field data to the base(“tableName”).create() function to do this. But, when I try it on my codebase, Node complains that create() has no such overload that takes an array of records.
Any advice on doing this?