Node referenceLogic
NUMBER_CONDITION
NUMBER_CONDITION node.
What it does
NUMBER_CONDITION node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
NUMBER_CONDITION compares two numeric values (left and right) using the configured operator and emits {"value": true|false} on its output. Supported operators are: EQUAL_TO, NOT_EQUAL_TO, GREATER_THAN, GREATER_THAN_OR_EQUAL_TO, LESS_THAN, and LESS_THAN_OR_EQUAL_TO. Wire the result into a CONDITIONAL node's condition input to branch the flow.
Example
Scenario: A Workflow checks whether an order total exceeds a discount threshold.
Wire the order total (e.g. from an HTTP_REQUEST response) into left, set right to 100, and choose operator GREATER_THAN. Connect the value output to a CONDITIONAL node — the true branch applies a discount, the false branch continues without one.