/** * Data table Node - Version 1.1 * Discriminator: resource=table, operation=list */ /** List all data tables */ export type DataTableV11TableListParams = { resource: 'table'; operation: 'list'; /** * Whether to return all results or only up to a given limit * @default true */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Options * @default {} */ options?: { /** Filter data tables by name (case-insensitive) */ filterName?: string | Expression | PlaceholderValue; /** Field to sort by * @default name */ sortField?: 'createdAt' | 'name' | 'updatedAt' | Expression; /** Sort Direction * @default asc */ sortDirection?: 'asc' | 'desc' | Expression; }; }; export type DataTableV11TableListNode = { type: 'n8n-nodes-base.dataTable'; version: 1.1; config: NodeConfig; };