OBJECT

ProfessionalRoleWithPermissions

Professional Role with its associated user permissions and the role on which it is based

link GraphQL Schema definition

  • type ProfessionalRoleWithPermissions {
  • # Professional Role identifier
  • id: LegacyId!
  • # Professional Role name
  • name: String!
  • # Professional Role description. Can be filled when the ProfessionalRole is
  • # created. Always empty for the base roles
  • description: String
  • # Professional Role name on which this role is based
  • baseRoleName: ProfessionalBaseRoleName
  • # Professional Role associated permissions
  • permissions: [ProfessionalRolePermission!]
  • }