workflowUpdate

Graphql fields and variables for the workflowUpdate mutation

Update a workflow

Scope required: workflow:write

For a complete list of input attributes see the WorkflowAttributes type

mutation workflowUpdate ($id: ID!, $attributes: WorkflowAttributes!) {
  workflowUpdate (id: $id, attributes: $attributes) {
      errors
      workflow {
        description
        enabled
        format
        id
        isolateToUserId
        keepUpdated
        name
        recipe
        standard
        targetClass
        workflowCategoryId
        workflowSchedule
      }
  }
}

Arguments

{
  "id": "456123",
  "attributes": {
    "workflowCategoryId": "456123",
    "name": "",
    "recipe": "",
    "description": "",
    "enabled": true,
    "isolateToUserId": "456123",
    "keepUpdated": true,
    "format": ""
  }
}
Name
Type
Description

id

ID

Response

Name
Type
Description

errors

List (String)

workflow

Last updated

Was this helpful?