workflowCreate

Graphql fields and variables for the workflowCreate mutation

Create a workflow

Scope required: workflow:write

For a complete list of input attributes see the WorkflowAttributes type

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

Arguments

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

Response

Name
Type
Description

errors

List (String)

workflow

Last updated

Was this helpful?