Boolean Operators
Related Operators
or example
or exampleyq --null-input 'true or false'true"yes" and "no" are strings
and example
and exampleMatching nodes with select, equals and or
any returns true if any boolean in a given array is true
any returns true if any boolean in a given array is trueany returns false for an empty array
any returns false for an empty arrayany_c returns true if any element in the array is true for the given condition.
any_c returns true if any element in the array is true for the given condition.all returns true if all booleans in a given array are true
all returns true if all booleans in a given array are trueall returns true for an empty array
all returns true for an empty arrayall_c returns true if all elements in the array are true for the given condition.
all_c returns true if all elements in the array are true for the given condition.Not true is false
Not false is true
String values considered to be true
Empty string value considered to be true
Numbers are considered to be true
Zero is considered to be true
Null is considered to be false
Last updated