The strangest things happens when I execute the simple below script in Airtable.
Does anyone know why it just stops after 15 created records and does not finish up to 50?
let table = base.getTable(“Clients”);
for (let i=0; i<50; i++) {
table.createRecordAsync({“Number”: i});
}