mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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:
@@ -7,6 +7,6 @@ export type FilterType = typeof ANY_FILTER | typeof ALL_FILTERS;
|
||||
|
||||
export type FieldEntry = {
|
||||
keyName: string;
|
||||
condition: 'eq' | 'neq';
|
||||
condition: 'eq' | 'neq' | 'like' | 'ilike' | 'gt' | 'gte' | 'lt' | 'lte';
|
||||
keyValue: DataStoreColumnJsType;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user