Node referenceLogic
NOT
NOT node.
What it does
NOT node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
NOT inverts a single boolean input (value) and emits {"result": boolean}. If the input is absent it defaults to false, so the output is true. Use it to flip the result of any condition node before passing it to a CONDITIONAL or another boolean gate.
Example
Scenario: A Workflow should proceed only when a contact is not already subscribed. A previous STRING_CONDITION checks the subscription status and emits true when the contact is subscribed. Wire that result into a NOT node, then feed result into a CONDITIONAL — the true branch runs only for unsubscribed contacts.