feat(Data Table Node): Add isEmpty and isNotEmpty operations (no-changelog) (#19046)

This commit is contained in:
Daria
2025-09-01 14:41:49 +03:00
committed by GitHub
parent 5bcff78174
commit b527edb5f8
5 changed files with 148 additions and 24 deletions

View File

@@ -5,8 +5,13 @@ export const ALL_FILTERS = 'allFilters';
export type FilterType = typeof ANY_FILTER | typeof ALL_FILTERS;
export type FieldEntry = {
keyName: string;
condition: 'eq' | 'neq' | 'like' | 'ilike' | 'gt' | 'gte' | 'lt' | 'lte';
keyValue: DataStoreColumnJsType;
};
export type FieldEntry =
| {
keyName: string;
condition: 'isEmpty' | 'isNotEmpty';
}
| {
keyName: string;
condition: 'eq' | 'neq' | 'like' | 'ilike' | 'gt' | 'gte' | 'lt' | 'lte';
keyValue: DataStoreColumnJsType;
};