A logic operator used to evaluate the truthiness of two or more expressions.
Syntax
booleanExpression && booleanExpression && ...
Sample usage
directs>0 && department:engineering returns all records with directs greater than zero and where department is engineering.
See also