Group
Represents permission group data.
type Group implements Node {
id: ID!
name: String!
permissions: [Permission!]!
users: [User!]!
userCanManage: Boolean!
}
Fields
Group.id ● ID! non-null scalar
The ID of the object
Group.name ● String! non-null scalar
Group.permissions ● [Permission!]! non-null object
List of group permissions
Group.users ● [User!]! non-null object
List of group users
Group.userCanManage ● Boolean! non-null scalar
True, if the currently authenticated user has rights to manage a group.
Interfaces
Node interface
An object with an ID
Returned By
permissionGroup query
Member Of
GroupCountableEdge object