Launch
Useful to jump to a different Flow. This block is not available to be added to a flow directly, but is instead for use from within other blocks.
If you want to jump to a different Flow from a button the Link Action Block, allows opening Flows in a new tab or window as an alternative to an Actions block button being used with a Launch block.
Default config
{
"type": "launch",
"adapter": "",
"workflowId": "",
}
Supported properties
adapter - The adapter of the flow to launch
workflowId - The flow to launch
valueGetters - An onbject containing JMESPath to evaluate for adapter and workflowId.
context - Data that will be passed to the flow to launch
Dynamic config
{
"type": "launch",
"valueGetters": {
"adapter": "data.adapterName",
"workflowId": "data.id"
}
}
With context
{
"type": "launch",
"adapter": "schemas",
"workflowId": "edit",
"context": {
"id": "data.uuid"
}
}