|| (or)
A logic operator used to evaluate the truthiness of at least one expression in a sequence of expressions.
Syntax
booleanExpression || booleanExpression || ...
Sample usage
directs>0 || department:engineering returns all records with directs greater than zero or where department is engineering.
See also
- && (and)
- = (equals)
- > (greater-than)

Updated 03 May 2023
Did this page help you?
Yes
No