Skip to content

Commit de3ad0f

Browse files
authored
Merge pull request #48 from ChuckJonas/ChuckJonas-missing-operator
Added missing != Operator
2 parents d50d703 + 54b6808 commit de3ad0f

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)