OBJECT

Role

Roles contain permissions that allow certain actions.

link GraphQL Schema definition

1type Role {
2
3# A unique, human-readable identifier.
4key: String
5
6# The display name of the role.
7title: String
8
9# The permissions granted by this role.
10permissions: [String]
11
12# Present only for company-specific roles.
13companyId: ID
14
15# Shows whether this role is currently in use. Note that this will always return
16# true for system roles.
17#
18# - Cost complexity: 1
19hasAssignees: Boolean
20
21}