Hi there - How is it possible to add a list of IDs into a createrecordasync function?
For instance, we have:
id_array: [recK0FKsUDicD8Lar,recP4uFoqMq9qJquY,recudo4XILtrW5IYd]
const table_Output = base.getTable(“Output_Results”)
table_Output.createRecordsAsync([
{fields: {
Client: [{id: clientID}],
Symptom: [{id: {id_array}]}
}])
where we replace id_array with the actual array
Thanks!