GraphQL OBJECT

SupportContactSearchResultItem

The flat support contact as result of a search.

link Definition

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