GraphQL OBJECT

Catalog

link Definition

  • type Catalog {
  • # Unique id of catalog.
  • id: Int
  • # Name of catalog.
  • name: String
  • # Client who offers the product selection.
  • client: Client
  • # Items in the catalog.
  • items: [CatalogItem]!
  • # Default language for localized catalog fields.
  • baseLanguage: Language
  • }