Skip to content

Commit 54b6808

Browse files
authored
Added missing != Operator
1 parent d50d703 commit 54b6808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/models/SoqlQuery.model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export type LogicalOperator = 'AND' | 'OR';
2-
export type Operator = '=' | '<=' | '>=' | '>' | '<' | 'LIKE' | 'IN' | 'NOT IN' | 'INCLUDES' | 'EXCLUDES';
2+
export type Operator = '=' | '!=' | '<=' | '>=' | '>' | '<' | 'LIKE' | 'IN' | 'NOT IN' | 'INCLUDES' | 'EXCLUDES';
33
export type TypeOfFieldConditionType = 'WHEN' | 'ELSE';
44
export type GroupSelector = 'ABOVE' | 'AT' | 'BELOW' | 'ABOVE_OR_BELOW';
55
export type LogicalPrefix = 'NOT';

0 commit comments

Comments
 (0)