- Einleitung
- Erste Schritte
- Prozessmodellierung mit BPMN
- Grundlagen der Prozessmodellierung
- Öffnen der Modellierungsarbeitsfläche
- Modellierung Ihres Prozesses
- Ausrichten und Verbinden von BPMN-Elementen
- Autopilot for Maestro (Vorschau)
- Prozess-Repository
- Prozessmodellierung mit Fallverwaltung
- Entwerfen eines persistenten Schemas für eine Fallentität
- Definieren von Fallschlüsseln (system vs. extern)
- Festlegung von Aufgaben-E/A und Write-Back-Vereinbarungen
- Austrittsregeln und Frühphasenbeendigung
- Modellierung von primären und sekundären Phasen
- Auslösen eines Falls über Data Fabric
- Implementieren von Personen und Berechtigungen auf Phasenebene
- Festlegen von SLAs und Regeln für die automatisierte Eskalation
- Konfigurieren einer Nachbearbeitungsschleife (erneuter Eintritt)
- Verwalten von Live-Fallinstanzen: Anhalten, migrieren und wiederholen
- Wörterbuch für die Fallverwaltungskomponente von Maestro
- Process modeling with Flow
- Erste Schritte
- Kernkonzepte
- Node reference
- Built-in nodes
- Connector nodes
- Build guides
- Best Practices
- Referenz (Reference)
- Prozessimplementierung
- Debugging
- Simulieren
- Veröffentlichen und Aktualisieren von agentischen Prozessen
- Häufige Implementierungsszenarien
- Extraktieren und Validieren von Dokumenten
- Prozessabläufe
- Prozessüberwachung
- Prozessoptimierung
- Referenzinformationen
Benutzerhandbuch zu Maestro
Dieser Leitfaden umfasst Folgendes:
Control flow determines how your process decides what to execute and in what order. Every process starts as a straight line of nodes, but real work requires decisions, repetition, and reunification. Flow provides four control flow nodes — Decision, Switch, Loop, and Merge — that let you branch, iterate, and converge without leaving the canvas.
Branching
Branching splits a process into separate paths so different nodes run depending on a condition.
Decision — two paths
The Decision node evaluates a single JavaScript expression and routes to one of two outputs: true or false. It fits yes/no, pass/fail, or any binary check.
$vars.httpRequest1.output.statusCode === 200
$vars.httpRequest1.output.statusCode === 200
The expression above sends successful responses down the true branch and everything else down the false branch.
Refer to the Decision node reference for the full configuration.
Switch — three or more paths
The Switch node evaluates an ordered list of case expressions and takes the first match. Add up to ten cases plus an optional default branch for anything that doesn't match.
Switch fits routing by category, status, or any value with more than two possible outcomes.
Refer to the Switch node reference for the full configuration.
Loops
Loops repeat a sequence of nodes multiple times. Flow offers two loop nodes for different situations.
Loop (For Each)
The Loop node iterates over a collection (an array) and executes its body once per item. It exposes three variables inside the loop body:
currentItem— the item for the current iterationcurrentIndex— a zero-based index tracking which iteration is runningcollection— the full array being iterated
After all iterations complete, the Loop produces an output array that aggregates the results from every iteration. Execution continues from the success handle.
A Loop node's Collection expression points to the array it iterates over, such as $vars.script1.output. The Parallel option runs all iterations at the same time instead of sequentially. Nodes connected to the loop output handle form the loop body, and the node connected to the success handle runs after all iterations complete.
Merging branches
After a Decision or Switch splits your process, use a Merge node when downstream nodes must run regardless of which branch was taken.
The Merge node accepts multiple incoming edges on its single input handle and produces one output. The last node of each branch connects to the Merge, and the process continues from the Merge output handle.
Merge waits for the branch that actually executed — it doesn't wait for all incoming edges. Only the branch that received data during the current run passes through.
Practical example
Consider a process that fetches a list of support tickets, loops over each one, and routes high-priority tickets differently from the rest.
The process wires together five nodes:
- An HTTP Request node calls a ticket API and returns an array of ticket objects.
- A Loop node iterates over
$vars.httpRequest1.output.body.tickets. - Inside the loop body, a Decision node evaluates
$vars.loop1.currentItem.priority === "high". The true branch connects to a Send Email node that alerts the on-call team; the false branch connects to a Script node that logs the ticket for later review. - A Merge node connects both branches so the iteration completes cleanly regardless of which path ran.
- The Merge connects back to the Loop's loopBack input, and the Loop's success handle continues to the rest of the process.
This pattern — fetch, loop, branch, merge — covers a large portion of real-world automation scenarios.
Zugehörige Seiten
- Decision node — full configuration reference for two-path branching
- Switch node — full configuration reference for multi-path branching
- Variables and data flow — how
$varsexpressions and node outputs work - Error handling — handling failures, which is distinct from conditional branching
- The canvas — navigating and building processes visually