OR
Boolean OR of two values.
Returns true when either boolean input is true. Use it to continue when at least one of several conditions is met.
Inputs
- Arequired — Boolean. Uses the first boolean operand in the OR evaluation.
- Brequired — Boolean. Uses the second boolean operand in the OR evaluation.
Outputs
- Result — Boolean. Represents true when at least one operand is true.
Example use cases
Match any condition
Continue when a ticket is labelled urgent or its priority is high, by wiring both checks into the two inputs.