OBJECT

Role

A role that can fulfill certain duties

link GraphQL Schema definition

  • type Role {
  • # The fulfillments of the role by a user or contact
  • fulfillments: [RoleFulfillment!]!
  • # The number of times that the role is fulfilled
  • fulfillmentsCount: Int!
  • # The role's unique internal identifier
  • id: Int!
  • # The name of the role
  • name: String!
  • }