Logical Operators
The supported logical operators you can use in an expression using the Conductor Query Language.
Logical Operator | Description | Examples |
---|---|---|
and
|
Finds everything that matches all expressions. |
Finds all 110g Airwall Gateways on v3.1.0 |
or |
Finds everything that matches any expression. |
Finds all 110g Airwall Gateways and all Airwall Edge Services on v3.1.0 |
in |
Finds everything that has any of the values in the list. |
Finds everything tagged a or c. Compare this with
Finds everything tagged a, even if these items also have additional tags.
Finds everything on version 3.1.0, 3.0.2, or 3.0.0. |
|
Partial match of the value. |
Finds all Airwall Edge Services with “bldg4” in the name. |
== |
Exact match of the value. |
Finds only Airwall Edge Services named exactly ‘bldg4’. |
!= |
Not equal |
Finds Airwall Edge Services that are not named ‘bldg4’. |
!
|
Is not |
Matches everything that is not a cloud Airwall Gateway. |
()
|
Group expressions inside the parentheses. |
Finds all 110g Airwall Gateways on v3.1.0 and all 300v Airwall Gateways on v3.0.0. |