Boolean
Uncontrolled node
Overview
A simple utility node for creating constant boolean (true/false) values within your workflow. Use this node to provide fixed boolean flags, configuration toggles, or conditional inputs to other nodes.
Inputs
| Input | Type | Description | Default |
|---|---|---|---|
| Boolean | Boolean | The boolean value to output. | false |
Outputs
| Output | Type | Description |
|---|---|---|
| Output | Boolean | The configured boolean value. |
Runtime Behavior
As an uncontrolled node, Boolean runs immediately when the workflow starts (or when its output is requested by a downstream node) and does not wait for event triggers. It simply outputs the boolean value configured in its properties. The output is cached and will not change unless the node's configuration is modified.
Example
Connect the Boolean node to the test input of an If node to create a conditional branch that is either always enabled or disabled based on the boolean value:
- Add a Boolean node and set its value to
trueorfalse - Connect the Output of the Boolean node to the test input of an If node
- When the workflow runs, the If node will evaluate the constant boolean and fire the corresponding true or false event
This is useful for feature flags, debug modes, or any scenario requiring a constant true/false value without dynamic calculation.