VALUE
VALUE node.
What it does
VALUE node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
VALUE injects a static constant into the flow. Configure type (string, number, or boolean) and value (the literal). The executor coerces the raw config value to the declared type using String(), Number(), or Boolean() and emits {"value": <converted>}. Use VALUE to supply hard-coded thresholds, default strings, or flag values to downstream condition or data-transform nodes without wiring a dynamic source.
Example
Scenario: A NUMBER_CONDITION node needs a fixed threshold of 500 to compare against a variable order total.
Add a VALUE node with type: "number" and value: "500". Wire its value output into the right input of a NUMBER_CONDITION node. This keeps the threshold in one configurable place rather than embedding it directly in the condition node.