Loading records
This script gets all the records from a specific table in your base and displays them in a tabular format.
Example
let table = base.getTable("Tasks");let query = await table.selectRecordsAsync({fields: table.fields});console.log(query.records);