Supported Lookups¶
Note
The lookups are all case insensitive.
Equals¶
Can be expressed as is, equals or =, and means a case insensitive equality check. Can be negated as is not, do(es) not equal or != respectively.
Contains¶
Can be expressed as contains, and means a case insensitive check. Can be negated as do(es) not contain.
Regex¶
Can be expressed as matches, and means a case insensitive regular expression match. Can be negated as do(es) not match.
In¶
Can be expressed as in, and means a case sensitive equality check against the given list of values. Can be negated as not in.
Greater than (or equal)¶
Can be expressed as > and >=, and means a comparison against the given value.
Lower than (or equal)¶
Can be expressed as < and <=, and means a comparison against the given value.
Note
Custom lookups are not supported currently.