Basic Operator Nodes: State Management & Error Handling
These Nodes track values across executions and provide graceful handling of failure scenarios.
Aggregate
The Aggregate Node tracks internal state and is intended to be used with FQL. A common application is creating loops: the Aggregate can increment its value each time it executes, and a Conditional Node can then check if a target value has been reached before continuing execution.
Try
The Try Node provides error handling by invoking a Node and triggering an alternate Node if the first action results in an error.
When connecting a Try Node:
- The first Connection should point to the Node that will always be attempted
- The second Connection should point to the Node that only executes if the first Node encounters an error
This allows your Flow to handle failures gracefully without breaking the entire execution path.
Did this answer your question?
