"""
Input for `deactivateForbiddenGroupItems` mutation.
User must have a scope **forbidden_group:write**
"""
input DeactivateForbiddenGroupItemsInput {
"Forbidden group identifier."
forbiddenGroupId: ID!
"List with IDs of `ForbiddenGroupService` objects. Each object should be active and belong to the `forbiddenGroupId`"
forbiddenGroupServiceIds: [ID!]
"List with IDs of `ForbiddenGroupCode` objects. Each object should be active and belong to the `forbiddenGroupId`"
forbiddenGroupCodeIds: [ID!]
}
"""
Return type for `DeactivateForbiddenGroupItems` mutation.
"""
type DeactivateForbiddenGroupItemsPayload {
"Updaed `ForbiddenGroup`."
forbiddenGroup: ForbiddenGroup
} |