This API starts a workflow run for a specified workflow definition.
Number of concurrent workflow runs, and number of steps executed in a given run is defined at Workflow System Limits.
Example
Use the Query Builder to create and edit a workflow. See NerdGraph API explorer.
mutation {  workflowAutomationStartWorkflowRun(    scope: { id: "12345678", type: ACCOUNT }    definition: { name: "my-workflow" }    workflowInputs: [      { key: "foo", value: "bar" }      { key: "fruit", value: "apple" }    ]    options: { logLevel: DEBUG }  ) {    runId  }}