Product

(OBJECT)

Product

link GraphQL Schema definition

  • type Product {
  • # Product internal ID
  • id: ID!
  • # Main product title
  • title: String
  • # Producer
  • producer: Producer
  • # Main product image
  • image: Url
  • # Link to the eshop product
  • link: Url!
  • # Short description (only plain text)
  • short: String
  • # Long description (allowed html format)
  • long: String
  • # Main product category
  • main_category: Category
  • # Attribute category
  • attribute_category: Category
  • # Assigned to categories
  • assigned_categories: [Category]
  • # Product EAN
  • ean: Ean
  • # Display the product in the store to customers
  • active: Boolean!
  • # Product identificator from supplier or data source
  • import_code: String
  • # Product net price (excl. tax)
  • price: Price
  • # Final price of product including tax, discounts and all other price components.
  • final_price: Price
  • # Warehouse item
  • warehouse_items: [WarehouseItem]
  • # Attributes
  • attributes: [Attribute]
  • # Tax rate for currency price
  • tax_rate: Percentage
  • # Product image gallery
  • alternative_images: [Url]
  • }

link Require by