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

  • ArequiredBoolean. Uses the first boolean operand in the OR evaluation.
  • BrequiredBoolean. Uses the second boolean operand in the OR evaluation.

Outputs

  • ResultBoolean. 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.

See also