Run another workflow with the Workflow block
Learn how to run a workflow from within a workflow.
The Workflow block passes data from the current workflow to another. This is useful for reducing complexity as it enables you to:
- Break down workflows into more manageable functions that perform specific actions (e.g., perform multiple API requests).
- Reuse the same actions across multiple workflows, reducing the amount of duplication across similar workflows (e.g., transform and store data in Retool Vectors).
The Workflow block triggers the specified workflow, passing the provided data for it to use. Once run, the specified workflow returns the data back to the current workflow for it to continue.