A map of the supported runtime filter operations
BEGINS_WITH
BW
BW_INC
BW_INC_MAX
BW_INC_MIN
CONTAINS
ENDS_WITH
EQ
GE
GT
IN
LE
LT
NE
NOT_IN
BEGINS_WITH:= "BEGINS_WITH"
Begins with
Defined in : types.ts
BW:= "BW"
Between, non-inclusive
BW_INC:= "BW_INC"
Between, inclusive of both higher and lower value
BW_INC_MAX:= "BW_INC_MAX"
Between, inclusive of higher value
BW_INC_MIN:= "BW_INC_MIN"
Between, inclusive of lower value
CONTAINS:= "CONTAINS"
Contains
ENDS_WITH:= "ENDS_WITH"
Ends with
EQ:= "EQ"
Equals
GE:= "GE"
Greater than or equal to
GT:= "GT"
Greater than
IN:= "IN"
Is included in this list of values
LE:= "LE"
Less than or equal to
LT:= "LT"
Less than
NE:= "NE"
Does not equal
NOT_IN:= "NOT_IN"
Is not included in this list of values