🔘 Boolean Node
The Boolean Node uses the Bool data type, which has only two possible states:
TrueFalse
This node is commonly used for conditional logic, toggles, and binary switches within your graph.

🔌 Input Ports
- value
Accepts:"True"or"False"and1(True) or0(False)
🔋 Output Ports
- value
Emits a Boolean value:
Trueif the input is"True"or1andFalseif the input is"False"or0
🧠Tip: Use this output to drive conditional branches, activate triggers, or control visibility in your visual pipeline.