mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
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:
@@ -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;
|
||||
}>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user