"""
Input for `createForbiddenGroup` mutation.
User must have a scope **forbidden_group:write**
"""
input CreateForbiddenGroupInput {
"The name of the `ForbiddenGroup`."
name: String!
"Reason for creating the `ForbiddenGroup`."
creationReason: String!
}
"""
Return type for `createForbiddenGroup` mutation.
"""
type CreateForbiddenGroupPayload {
"Created `ForbiddenGroup`."
forbiddenGroup: ForbiddenGroup
} |