Skip to content

updateConfiguredGroup

Update the configuration, name, or deletion status of a configured group.

Arguments

Argument Type Description
input (required) UpdateConfiguredGroupInput! The input for the UpdateConfiguredGroup mutation.

Returns

Void

Sample

mutation UpdateConfiguredGroup($input: UpdateConfiguredGroupInput!) {
  updateConfiguredGroup(input: $input)
}
{
  "input": {
    "groupId": "00000000-0000-0000-0000-000000000000",
    "orgId": "00000000-0000-0000-0000-000000000000",
    "performArchival": true,
    "updatedPdls": [
      "example-string"
    ]
  }
}
{
  "data": {
    "updateConfiguredGroup": "example-string"
  }
}