Flow Controls
Flow control nodes direct or manage the execution path of a workflow. They do not fetch or produce data on their own; they decide which downstream path receives the data based on a condition, a script result, a time delay, or user input.
Flow controls include:
- If-Else Condition — evaluates a script that returns
trueorfalseand routes the input to the corresponding True or False output port. - Switch Case — evaluates a script that returns
0,1, or2and routes the input to the matching output port (Option1, Option2, or Option3). - Delay — holds the data for a configured amount of time before passing it to the output.
- UI — pauses the workflow and presents a form to the user; execution resumes after the user submits the form.