Trying to add more than one field under the createRecordsAsync action. This is my single field being created right now, which is pulling (successfully) the name from an array. What I’m trying to do is perhaps a tad loftier than I’m indicating, but I’d like to populate the linked record field of the created record with the record ID of another record. Can I do that in this step here?
await table.createRecordsAsync([
{
fields:
{"Name": tempArray[a]},
//hoping to insert the link via record ID at this stage here.
},
]);