EzFlowEzFlow Docs
Node referenceLogic

AND

AND node.

What it does

AND node.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

AND takes two boolean inputs (left and right) and emits {"result": true} only when both are truthy. Missing inputs default to false. Combine multiple condition nodes (NUMBER_CONDITION, STRING_CONDITION, etc.) and feed their outputs into left and right to require all conditions to pass before branching.

Example

Scenario: A Workflow sends a VIP upgrade email only when the customer has more than 10 orders and a total spend above $500.

Wire a NUMBER_CONDITION (orders > 10) into left and a second NUMBER_CONDITION (spend > 500) into right. Connect result to a CONDITIONAL node — the true branch triggers the VIP email.

On this page