workflowCategoryUpdate

Graphql fields and variables for the workflowCategoryUpdate mutation

Update a workflow category

Scope required: workflow:write

For a complete list of input attributes see the WorkflowCategoryAttributes type

mutation workflowCategoryUpdate ($id: ID!, $attributes: WorkflowCategoryAttributes!) {
  workflowCategoryUpdate (id: $id, attributes: $attributes) {
      errors
      workflowCategory {
        id
        name
      }
  }
}

Arguments

{
  "id": "456123",
  "attributes": {
    "name": ""
  }
}
Name
Type
Description

Response

Name
Type
Description

errors

List (String)

workflowCategory

Last updated

Was this helpful?