Used to update an existing workflow definition. It returns an error if the workflow definition doesn’t already exist.
Example
mutation {  workflowAutomationUpdateWorkflowDefinition(    definition: { yaml: "<workflow definition YAML>" }    scope: { id: "11608789", type: ACCOUNT }  ) {    definition {      name      version      yaml    }  }}