Used to invoke other workflows from within a workflow. You can use variables from the current workflow as input for the sub-workflow, and use the sub-workflow's output as variables in the current workflow for use in subsequent nodes.
The process of invoking a workflow is shown in the figure below:

By invoking workflows, you can reuse common process logic, such as sending emails, SMS, etc., or break down a complex workflow into multiple sub-workflows for easier management and maintenance.
Essentially, a workflow does not distinguish whether a process is a sub-workflow. Any workflow can be invoked as a sub-workflow by other workflows, and it can also invoke other workflows. All workflows are equal; there is only the relationship of invoking and being invoked.
Similarly, the use of invoking a workflow occurs in two places:
In the workflow configuration interface, click the plus ("+") button in the workflow to add an "Invoke Workflow" node:

Select the workflow to invoke. You can use the search box for a quick search:

:::info{title=Tip}
After selecting a workflow, you also need to configure the trigger's variables as input data to trigger the sub-workflow. You can directly select static data or choose variables from the current workflow:

Different types of triggers require different variables, which can be configured on the form as needed.
Refer to the content of the Workflow Output node to configure the output variables of the sub-workflow.
Back in the main workflow, in other nodes below the Invoke Workflow node, when you want to use the output value of the sub-workflow, you can select the result of the Invoke Workflow node. If the sub-workflow outputs a simple value, such as a string, number, boolean, date (date is a string in UTC format), etc., it can be used directly. If it is a complex object (such as an object from a collection), it needs to be mapped through a JSON Parse node before its properties can be used; otherwise, it can only be used as a whole object.
If the sub-workflow does not have a Workflow Output node configured, or if it has no output value, then when using the result of the Invoke Workflow node in the main workflow, you will only get a null value (null).