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
- Inputrequired — Boolean. Uses the boolean value to invert its truth value.
Outputs
- Result — Boolean. 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.