Skip to content

Commit ccac6d4

Browse files
committed
feat: improve query modification
1 parent 8be6618 commit ccac6d4

File tree

5 files changed

+433
-6
lines changed

5 files changed

+433
-6
lines changed

src/components/queryBuilder/FilterEditor.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ const filterOperators: Array<SelectableValue<FilterOperator>> = [
2828
{ value: FilterOperator.GreaterThanOrEqual, label: '>=' },
2929
{ value: FilterOperator.Like, label: 'LIKE' },
3030
{ value: FilterOperator.NotLike, label: 'NOT LIKE' },
31+
{ value: FilterOperator.ILike, label: 'ILIKE' },
32+
{ value: FilterOperator.NotILike, label: 'NOT ILIKE' },
3133
{ value: FilterOperator.IsEmpty, label: 'IS EMPTY' },
3234
{ value: FilterOperator.IsNotEmpty, label: 'IS NOT EMPTY' },
3335
{ value: FilterOperator.In, label: 'IN' },
@@ -266,6 +268,8 @@ export const FilterEditor = (props: {
266268
FilterOperator.IsAnything,
267269
FilterOperator.Like,
268270
FilterOperator.NotLike,
271+
FilterOperator.ILike,
272+
FilterOperator.NotILike,
269273
FilterOperator.In,
270274
FilterOperator.NotIn,
271275
FilterOperator.IsNull,

0 commit comments

Comments
 (0)