Skip to main content

Logical gate

The logical gate function is used to combine one or many conditions into a single condition. The data connected to function is passed through the gate if the conditions are met: all conditions must be fullfilled.

Example
# Example 1
Inputs:
- Data (some text): Hello world!
- Conditions: true, true
Output: Conditions are fullfilled,
so the data is passed through the gate.
- Text connector: Hello world!

# Example 2
Inputs:
- Data (some number): 42
- Conditions: true, false
Output: Conditions are not fullfilled,
the execution flow is stopped here.

Parameters

Value typeREQUIRED

The type of the data that is passed through the gate.

Input

Data

The data that is passed through the gate.

Condition

The condition that must be fullfilled to pass the data through the gate.

Output

Data

The data that is passed through the gate.