This node allows you to call a workflow within another workflow using Workflow API. For eg: If you have a standard error notification policy, you can create a Internal Conductor sub flow and then have all workflows call this for error notification.

Node Functionality

Sub Flows node allows you to use a workflow within a workflow. It can:

  • Use all the Workflows created in the same application.
  • Use any internal conductor workflow within a workflow.
  • Use a workflow recursively by calling itself.

Ensure that you put a break condition in your workflow to avoid infinite recursion. For safeguards, Cobalt sets a limit of 1000 recursions incase a break condition is not available during recursion.

  • Reduce the size of your workflows by converting repetitive steps into a separate workflow.

A workflow that is being used as a Sub-flow is triggered by a Workflow API call from another workflow instead of an event based trigger in an application.

To learn more about how to fire a Workflow API Call, refer to the doc here.

Example Usage of Sub Flow

Consider a use-case where you want to split a full name into first name and last name and then use it in your workflow.

These involves two steps, first creating workflow which splits the full name and the second step is the workflow which will call the first one as a Sub Flow.

Step 1: Creating a Sub Flow

Step 2: Using the Sub Flow

Synchronous Execution Toggle

By default the toggle is turned off and only returns the execution ID which you can then use in the /response API to get the response returned by the Sub Flow.

If the toggle is turned On i.e Synchronous Execution is true, the API response will include both the execution_id and the return_value object containing response as set in the Response node.

In conclusion, sub flows improve your workflow efficiency and by grouping a set of actions into a separate workflow instead of repeating them in the same workflow, you reduce the effort needed to change and test the steps.