Hi, I am new to scripting. I want to set all the values of column(Duplicates?) to null.
How do I do that? Here is my code but it seems that there is an issue with query.recordIds in line 3.
The error is no overload matches.
var table = base.getTable("Table 1");
var query = await table.selectRecordsAsync();
table.updateRecordAsync(query.recordIds, {'Duplicates?': null})
