GraphQL OBJECT

SupportContact

Support contact for the product/client. Displays to customers on checkout pages and in emails.

link Definition

  • type SupportContact {
  • # Support contact ID.
  • id: Int
  • # Support contact name.
  • name: String
  • # Client for which the support contact is defined.
  • client: Client
  • # Default language Id.
  • defaultLanguage: Language!
  • # Localized support contact items.
  • items: [SupportContactLocalizedItem]
  • # Products that refer to this support contact.
  • referringProducts: [Product]
  • # Clients that refer to this support contact.
  • referringClients: [Client]
  • }