gt (Greater Than)
Returnstrue if the first value is greater than the second.
true
lt (Less Than)
Returnstrue if the first value is less than the second.
true
gte (Greater Than or Equal)
Returnstrue if the first value is greater than or equal to the second.
true
lte (Less Than or Equal)
Returnstrue if the first value is less than or equal to the second.
true
eq (Equal)
Returnstrue if both values are equal (loose equality).
true (if status is “active”)
neq (Not Equal)
Returnstrue if values are not equal.
true (if status is not “deleted”)

