GraphQL OBJECT

Office

Office information for the user or client. An office is a location used by your organization.

link Definition

  • type Office {
  • # Unique ID of the office.
  • id: Long!
  • # Client to whose organization the office belongs.
  • client: Client
  • # Office name.
  • name: String!
  • # Date and time when the office created.
  • creationDate: DateTime
  • # User who created the office.
  • 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 office is used.
  • referringUserAccounts: [UserAccount]
  • }