Mastra.getWorkflows()
The .getWorkflows() method is used to retrieve all workflows that have been configured in the Mastra instance. The method accepts an optional options object.
Usage exampleDirect link to Usage example
mastra.getWorkflows();
ParametersDirect link to Parameters
options:
{ serialized?: boolean }
Optional configuration object. When `serialized` is true, returns simplified workflow objects with only the name property instead of full workflow instances.
ReturnsDirect link to Returns
workflows:
Record<string, Workflow>
A record of all configured workflows, where keys are workflow IDs and values are workflow instances (or simplified objects if serialized is true).