OBJECT
Role
Roles contain permissions that allow certain actions.
link GraphQL Schema definition
1 type Role { 2 3 # A unique, human-readable identifier. 4 : String 5 6 # The display name of the role. 7 : String 8 9 # The permissions granted by this role. 10 : [String] 11 12 # Present only for company-specific roles. 13 : 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 19 : Boolean 20 21 }