GraphQL OBJECT

OfficeSearchResultItem

The flat office as result of a search.

link Definition

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