getTable
Usage
const formula = await dataSource.getTable({
columns: ['column_A','column_B'],
sortBy: 'column_A',
sortDirection: 'desc',
sortByColumnType: 'number',
limit: 10, // 10 rows per page
offset: 30 // return the third page
// + base options...
});Options
export interface TableRequestOptions extends BaseRequestOptions {
columns: string[];
sortBy?: string;
sortDirection?: 'asc' | 'desc';
sortByColumnType?: 'number' | 'string' | 'date';
limit?: number;
offset?: number;
}Response

Last updated
Was this helpful?
