```ts export const parentWorkflow = workflow.define({ handler: async (step) => { await step.runWorkflow(internal.example.childWorkflow, childWorkflowArgs) } }) ``` If the parent workflow is canceled, every child workflow should be canceled.