I have a view where the primary field is an autonumber generator. About 12 hours ago my code below would have output the list of the IDs of all of the records in a view:
let Table = base.getTable(TABLE_NAME);
let view = Table.getView(VIEW_NAME)
let query = await view.selectRecordsAsync();
for (let record of query.records) {
output.text(record.name)
}
However, it is now saying that each of these records is unnamed. Oddly, the description of the “name” property says that it should be the string of the “Primary Cell Value”. Double clicking the autonumber field shows “This is the table’s primary field”. Can someone clarify my misunderstanding?