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:

    OptionDescription
    Value 1The first value to compare. This can be a variable or a static value.
    ComparisonThe comparison operator to use. This can be one of the following: ==, !=, <, <=, >, >=.
    Value 2The second value to compare. This can be a variable or a static value.
    True ConnectionThe outgoing connection to follow if the condition is true.
    False ConnectionThe outgoing connection to follow if the condition is false.

    On this page

    Exclusive Gateway