Node referenceLogic
OR
OR node.
What it does
OR node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
OR takes two boolean inputs (left and right) and emits {"result": true} when either is truthy. Missing inputs default to false. Use it to allow a flow to continue when any one of several conditions is met.
Example
Scenario: A Workflow sends an urgent alert when either a high-severity flag is set or the response time exceeds a threshold.
Wire a STRING_CONDITION (severity EQUALS "high") into left and a NUMBER_CONDITION (response time > 5000) into right. Connect result to a CONDITIONAL — the true branch sends the alert, covering either condition.