OBJECT
Role
A role signifies a user's permissions within a given context.
link GraphQL Schema definition
1 type Role { 2 3 : String 4 5 : String @deprecated( reason: "The app_name column has been removed from the role table." ) 6 7 : String! 8 9 : PermissionList 10 11 : ID! 12 13 : Application 14 15 }