Options for starting Temporal workflows. Extends base workflow start options with custom properties.
const options: StartWorkflowOptions = { taskQueue: 'orders', workflowId: `order-${orderId}`, signal: { name: 'start', args: [initialData] }}; Copy
const options: StartWorkflowOptions = { taskQueue: 'orders', workflowId: `order-${orderId}`, signal: { name: 'start', args: [initialData] }};
Optional
Options for starting Temporal workflows. Extends base workflow start options with custom properties.
Example