feat(Data Table Node): Add new filters to node operation conditions (no-changelog) (#18942)

Co-authored-by: Charlie Kolb <charlie@n8n.io>
This commit is contained in:
Daria
2025-08-29 10:14:46 +03:00
committed by GitHub
parent 6379ce53a9
commit 1bc317dce5
6 changed files with 309 additions and 16 deletions

View File

@@ -45,7 +45,7 @@ export type ListDataStoreContentFilter = {
type: 'and' | 'or';
filters: Array<{
columnName: string;
condition: 'eq' | 'neq';
condition: 'eq' | 'neq' | 'like' | 'ilike' | 'gt' | 'gte' | 'lt' | 'lte';
value: DataStoreColumnJsType;
}>;
};