Skip to main content

Logical AND condition

The AND condition is a logical function that returns true if all of the conditions are true, and false otherwise.

Example
# Example 1:
Inputs: true, true, true
Output: true

# Example 2:
Inputs: true, false, true
Output: false

Input

Booleanrequired

One or many boolean values. If no input is wired, the function emits false (it does not fail). A non-boolean input fails the step.

Output

Boolean

The result of the condition (true or false).