I’m trying to batch update records using the Scripting app. I’m able to update one-by-one using this script:
// set the table
let productsTbl = base.getTable('PRODUCTS')
// get the table records
let products = await productsTbl.selectRecordsAsync()
...