EzFlowEzFlow Docs
Node referenceLogic

CHAINED_CONDITIONS

CHAINED_CONDITIONS node.

What it does

CHAINED_CONDITIONS node.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

CHAINED_CONDITIONS evaluates a multi-group condition set using json-logic: groups are OR-ed together and conditions within each group are AND-ed. Each condition specifies a left field path (resolved from the input object), an operator, and a right value (either a literal or a variable reference). The node emits {"result": boolean}. This lets you express complex filters — equivalent to (A AND B) OR (C AND D) — inside a single node rather than chaining separate AND/OR nodes.

Example

Scenario: A Workflow filters inbound leads: escalate when the lead is from "enterprise" tier with a score above 80, or from any tier with a score above 95.

Configure two groups:

  • Group 1: tier EQUALS "enterprise" AND score > 80
  • Group 2: score > 95

Wire the result output into a CONDITIONAL to route high-priority leads to a sales alert.

On this page