OBJECT

Role

A role signifies a user's permissions within a given context.

link GraphQL Schema definition

1type Role {
2
3description: String
4
5appName: String @deprecated( reason: "The app_name column has been removed from the role table." )
6
7name: String!
8
9permissions: PermissionList
10
11id: ID!
12
13application: Application
14
15}