Available Nodes
Exclusive Gateway
The exclusive gateway is a decision point in a workflow. It allows you to control the process flow based on conditions.
Structure
The Exclusive Gateway is a decision point in a process. It allows you to control the process flow based on a condition. An exclusive gateway has one incoming connection and two outgoing connections. Each outgoing connection is associated with either the condition being true or false. The engine evaluates the condition and follows the corresponding outgoing connection.
True
False
{varA} == value2
Gateway Options
đĄ Tip: It is possible to chain multiple exclusive gateways in order to create more complex decisions.
Options
The Exclusive Gateway has the following options:
| Option | Description |
|---|---|
| Value 1 | The first value to compare. This can be a variable or a static value. |
| Comparison | The comparison operator to use. This can be one of the following: ==, !=, <, <=, >, >=. |
| Value 2 | The second value to compare. This can be a variable or a static value. |
| True Connection | The outgoing connection to follow if the condition is true. |
| False Connection | The outgoing connection to follow if the condition is false. |