Skip to main content

Branch Block

The Branch Block allows us to execute a sequence of blocks based on the first Condition evaluated to true. This block uses more Conditions and each of them is evaluated in sequence. If no Condition is evaluated to true, then the sequence in Next block is executed.


ConditionThe condition type to be evaluated, creating a branch. Currently the avaible conditions are:
  • HasItemCondition
  • VariableCondition
For more informations about Conditions implementation, please check the Conditions documentation.
Next blockThe sequence of blocks to be executed if no condition is evaluated to be true.