All Operators
Last updated
Was this helpful?
All string operators are case insensitive except for ~~=.
=
Equal to value
!=
Not equal to value
~=
Matches pattern with * and ? wildcards
~~=
Matches regular expression
=
Equal to value
!=
Not equal to value
=
Equal to value
!=
Not equal to value
>
Greater than value
>=
Greater than or equal to value
<
Less than value
<=
Less than or equal to value
=
Equal to value
!=
Not equal to value
<<
Contained in the cidr given by value
[*]
Any element of the list
[0]
Element at index 0
:keys[*]
Any key of the dictionary
:values[*]
Any element at any key
["foo"]
Element at the key "foo"
is
Checks that a field does not have a value
is not
Checks that a field does have a value
Last updated
Was this helpful?
Was this helpful?