Launch

Jump to a new workflow. This block is not available to be added to a flow directly, but is instead for use from within other blocks.

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"
    }
}