Today my scripting app stopped working and is now giving an error.
“L: linkedRecordIds”
The issue is when pulling in records. I tried creating a separate scripting app with these three lines:
let table = base.getTable('Products');
let query = await table.selectRecordsAsync();
output.table(query.records);
I am still getting the same error. Is there something wrong with the table itself? It seems any table with records that are linked to Programs give the same error while tables that aren’t are completely fine.