GraphQL OBJECT

Department

Department information for the user or client. A department is a team in your organization.

link Definition

  • type Department {
  • # Unique ID of the department.
  • id: Long!
  • # Client to whose organization the department belongs.
  • client: Client
  • # Department name.
  • name: String!
  • # Date and time when the office created.
  • creationDate: DateTime
  • # User who created the recommendation.
  • createdBy: UserAccount!
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User that last modified the office.
  • lastModifiedBy: UserAccount!
  • # List of user accounts in which the department is used.
  • referringUserAccounts: [UserAccount]
  • }