Skip to main content
Version: 2.0-beta.1
Condition Node interface

Condition node

Condition Node

Overview

The Condition Node evaluates one or more boolean expressions and routes the incoming payload to either the True or False output. It is the primary branching mechanism for Maestro pipelines, supporting everything from simple comparisons to complex expressions that reference broader pipeline context. Both branches preserve upstream metadata and attach decision details so downstream steps can understand why a particular path was taken.


Core Functionality

1. Multiple Condition Support

  • Define any number of conditions in the conditions array.
  • Each condition can be a literal boolean, a simple comparison, or a full Maestro expression written in JavaScript.
  • Combine multiple entries with a logical operator (AND or OR) to express compound rules.

2. Expression-Driven Logic

  • Conditions execute in the Maestro expression engine with access to $input, $inputs, $node, $pipeline, iteration context, and other helpers.
  • Template syntax ({{ ... }}) enables dynamic branching based on live data, such as {{ $input.status === "active" }}.

3. Dual Output Ports

  • True: Receives the original payload when the combined expression evaluates to true.
  • False: Receives the payload when the expression resolves to false.
  • Both outputs include metadata like condition_result, the evaluated conditions, the logical_operator, and processed_by="condition" while preserving upstream fields.

4. Validation & Safety Checks

  • Saves are rejected if the conditions list is empty, malformed, or evaluates to non-boolean values.
  • The logical operator must resolve to AND or OR; expressions are allowed but must produce valid values.

Configuration Reference

Condition Node parameters

Parameters Tab

Parameters Configuration

Condition Node settings

Settings Tab

Settings Configuration

Parameters (Dynamic Data)

FieldTypeDefaultDescription
Conditionsarray<string>[]Required list of boolean expressions that evaluate to true or false.
Logical Operatorstring"AND"Combines individual results; accepts "AND" or "OR" and can be driven by expressions.
Debug ModebooleanfalseEnables verbose evaluation logs for troubleshooting.

Each entry in conditions can be:

  • A literal boolean (true, false).
  • A simple comparison (status === "active").
  • A templated expression ({{ $input.score > 75 }}).
  • A JavaScript snippet that leverages pipeline context or helper functions.

Settings (Static Configuration)

FieldTypeDefaultDescription
Retry on FailbooleanfalseRarely necessary, but available if infrastructure hiccups interrupt evaluation.
On Errorstring"Stop Pipeline""Stop Pipeline" halts the branch, "Continue Execution" forwards payloads on the false path, "Retry Node" replays evaluation under retry rules.
Notesstring""Document the business rule for future reviewers.
Display Note in PipelinebooleanfalseShow the note on the canvas so intent is visible without opening the node.

Usage Examples

Example 1: Approve Qualified Lots

FieldValue
Conditions["lotStatus === 'released'"]
Logical OperatorAND
NotesOnly released lots proceed to packaging.

Any lot marked released exits via the trueCondition port; everything else continues down the rejection path.

Example 2: Flag High-Risk Orders

FieldValue
Conditions["orderValue > 10000","customerTier === 'new'"]
Logical OperatorAND
On ErrorContinue Execution

Both rules must pass for the order to be considered high risk. If evaluation fails, the branch defaults to falseCondition so processing continues safely.

Example 3: Prioritize Assembly Line Alerts

FieldValue
Conditions["alertLevel >= 3","lineName === 'Line-A'"]
Logical OperatorOR
Debug Modetrue
Timeout (ms)1500

This configuration escalates whenever a critical alert arrives or the affected line is Line-A. Debug logging captures the evaluated conditions for operators reviewing incidents.