groupCreate

Graphql fields and variables for the groupCreate mutation

Create a group

Scope required: security:write

For a complete list of input attributes see the GroupAttributes type

mutation groupCreate ($attributes: GroupAttributes!) {
  groupCreate (attributes: $attributes) {
      errors
      group {
        id
        name
        parentGroupId
      }
  }
}

Arguments

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

attributes

Response

Name
Type
Description

errors

List (String)

group

Last updated

Was this helpful?