/** * Data table Node - Version 1 * Discriminator: resource=row, operation=get */ /** Get row(s) */ export type DataTableV1RowGetParams = { resource: 'row'; operation: 'get'; /** * Data table * @builderHint Default to mode: 'list' which is easier for users to set up * @default {"mode":"list","value":""} */ dataTableId?: { __rl: true; mode: 'list' | 'name' | 'id'; value: string; cachedResultName?: string }; /** * Must Match * @default anyCondition */ matchType?: 'anyCondition' | 'allConditions' | Expression; /** * Filter to decide which rows get * @default {} */ filters?: { /** Conditions */ conditions?: Array<{ /** Choose from the list, or specify using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @default id */ keyName?: string | Expression; /** Condition * @default eq */ condition?: string | Expression; /** Value * @displayOptions.hide { condition: ["isEmpty", "isNotEmpty", "isTrue", "isFalse"] } */ keyValue?: string | Expression | PlaceholderValue; }>; }; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Whether to sort the results by a column * @default false */ orderBy?: boolean | Expression; /** * Choose from the list, or specify using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.show { orderBy: [true] } * @default createdAt */ orderByColumn?: string | Expression; /** * Sort direction for the column * @displayOptions.show { orderBy: [true] } * @default DESC */ orderByDirection?: 'ASC' | 'DESC' | Expression; }; export type DataTableV1RowGetOutput = { createdAt?: string; id?: number; updatedAt?: string; }; export type DataTableV1RowGetNode = { type: 'n8n-nodes-base.dataTable'; version: 1; config: NodeConfig; output?: Items; };