Skip to content

🔘 Boolean Node

The Boolean Node uses the Bool data type, which has only two possible states:

  • True
  • False

This node is commonly used for conditional logic, toggles, and binary switches within your graph.


Boolean Node Diagram


🔌 Input Ports

  • value
    Accepts: "True" or "False" and 1 (True) or 0 (False)

🔋 Output Ports

  • value Emits a Boolean value: True if the input is "True" or 1 and False if the input is "False" or 0

🧠 Tip: Use this output to drive conditional branches, activate triggers, or control visibility in your visual pipeline.