GraphQL OBJECT

DepartmentSearchResultItem

The flat department as result of a search.

link Definition

  • type DepartmentSearchResultItem {
  • # Unique Id of the department.
  • id: Int!
  • # Name of the department.
  • name: String!
  • # Information about client the department belongs to.
  • client: ClientInformation
  • # Date and time when the department created.
  • creationDate: DateTime
  • # User who created the department.
  • createdBy: UserAccountInformation
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User that last modified the department.
  • lastModifiedBy: UserAccountInformation
  • }