feat(Data Table Node): Add returnAll for get all rows (no-changelog) (#19454)

This commit is contained in:
Daria
2025-09-12 12:10:14 +03:00
committed by GitHub
parent c5ee969433
commit af6da1027e
3 changed files with 22 additions and 4 deletions

View File

@@ -3,6 +3,8 @@ import type { DataStoreColumnJsType } from 'n8n-workflow';
export const ANY_CONDITION = 'anyCondition';
export const ALL_CONDITIONS = 'allConditions';
export const ROWS_LIMIT_DEFAULT = 50;
export type FilterType = typeof ANY_CONDITION | typeof ALL_CONDITIONS;
export type FieldEntry =