An array of specific field names to be returned. Returns all fields if none are supplied.
A formula used to filter the records to return.
A list of sort objects that specifies how the records will be ordered
The name or id of a view on the specified table. If set, only the records in that view will be returned. The records will be sorted according to the order of the view unless the sort parameter is included, which overrides that order. Fields hidden in this view will be returned in the results. To only return a subset of fields, use the fields parameter.
A Query Object used to build a filter formula to filter the records to return.
Generated using TypeDoc
Optional object to pass to the #select method to tailor the response.
{ fields: ['name', 'email', 'date'], where: {name: 'Paul'}, maxRecords: 50, pageSize: 10, sort: [ { field: "name", direction: "desc" }, { field: "date", direction: "asc" } ], view: 'Grid view' }