Skip to main content
Version: 6.1

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 true or false and routes the input to the corresponding True or False output port.
  • Switch Case — evaluates a script that returns 0, 1, or 2 and 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.