NOT

Boolean NOT.

Inverts a boolean input, turning true into false and false into true. Use it to branch on the negative case of a condition.

Inputs

  • InputrequiredBoolean. Uses the boolean value to invert its truth value.

Outputs

  • ResultBoolean. Represents the inverted boolean result.

Example use cases

Act on the false case

Invert an is-assigned check so the flow only continues for tickets that are still unassigned.

See also