v0.4.0
-
Added
Table.select
for querying records in a table. It takes the following optional parameters for sorting and filtering records:fields: only include the specified fields in results. filterByFormula: only include records that satisfy the formula. maxRecords: at most, return this many records in total. pageSize: at most, return this many records in each request. sort: specify fields to use for sorting the records. view: return records from a specific view, using the view order.
-
Deprecated
Table.list
andTable.forEach
. UseTable.select
instead.