Skip to main content

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

InputTypeDescriptionDefault
BooleanBooleanThe boolean value to output.false

Outputs

OutputTypeDescription
OutputBooleanThe 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:

  1. Add a Boolean node and set its value to true or false
  2. Connect the Output of the Boolean node to the test input of an If node
  3. 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.