OBJECT
Product
The Product entity
link GraphQL Schema definition
- type Product {
- # The product id
- : Int
- # The product type - simple, configurable, virtual, downloadable, grouped
- : String
- # The product visibility. Customers use this visibility to identify the product.
- : Int
- # The product status. Customers use this status to identify the product.
- : Int
- # The product name. Customers use this name to identify the product.
- : String
- # A number or code assigned to a product to identify the product, options, price,
- # and manufacturer
- : String
- # Detailed information about the product. The value can include simple HTML tags.
- : String
- # A short description of the product. Its use depends on the theme.
- : String
- # The price of an item
- : Float
- # The price of an item
- : Float
- # The price of an item
- : Float
- # The final price of an item
- : Float
- # The price of an item
- : Float
- # The price of an item
- : Float
- # The price of an item
- : Float
- # The price of an item
- : Float
- # The price of an item
- : Float
- # The numeric minimal price of the product. Do not include the currency code.
- : Float
- # The numeric maximal price of the product. Do not include the currency code.
- : Float
- # The discounted price of the product
- : Float
- # The discounted price of the product
- : Float
- # The discounted price of the product
- : Float
- # The beginning date that a product has a special price
- : String
- # The end date that a product has a special price
- : String
- # The weight of the item, in units defined by the store
- : Float
- # A number representing the product's manufacturer
- : String
- # A string that is displayed in the title bar and tab of the browser and in search
- # results lists
- : String
- # A comma-separated list of keywords that are visible only to search engines
- : String
- # A brief overview of the product for search results listings, maximum 255
- # characters
- : String
- # The relative path to the main image on the product page
- : String
- # The relative path to the small image, which is used on catalog pages
- : String
- # The relative path to the product's thumbnail image
- : String
- # The price when tier pricing is in effect and the items purchased threshold has
- # been reached
- : Float
- # Product tier prices
- : [ProductTierPrice]
- # The beginning date for new product listings, and determines if the product is
- # featured as a new product
- : String
- # The end date for new product listings
- : String
- # Indicates whether the product has required options
- : Boolean
- # Indicates whether additional attributes have been created for the product
- : Boolean
- # The label assigned to a product image
- : String
- # The label assigned to a product's small image
- : String
- # The label assigned to a product's thumbnail image
- : String
- # The product's country of origin
- : String
- # Indicates whether a gift message is available
- : Boolean
- # Timestamp indicating when the product was created
- : String
- # Timestamp indicating when the product was updated
- : String
- # The product size. Customers use this size to identify the product.
- : String
- # The product sizes for all configurable_children variants. Customers use this
- # size to identify the product.
- : [String]
- # The product color. Customers use this color to identify the product.
- : String
- # The product colors for all configurable_children variants. Customers use this
- # color to identify the product.
- : [String]
- # Category ID the product belongs to
- : [String]
- # The product categories. It executes additional query to fetch full category
- # objects
- : [Category]
- # The product categories. This is just a simplified object with no structure
- : [CategoryBinding]
- # Configurable product childrens
- : [Product]
- # The product stock. Customers use this stock to identify the product.
- : StockItem
- # Is product in stock
- : Boolean
- # keyword filter input
- : String
- # Media items assigned to this specific product
- : [MediaGalleryItem]
- # Configurable attributes for this product
- : [ConfigurableOption]
- # Custom options for this product
- : [CustomOption]
- # Bundle options for this product
- : [BundleOption]
- # Get the product reviews
- #
- # Arguments
- # search: Performs a full-text search using the specified key
- # words.,
- # filter: An array of categories that match the specified search
- # criteria,
- # pageSize: Specifies the maximum number of results to return at
- # once. This attribute is optional.,
- # currentPage: Specifies which page of results to return. The
- # default value is 1.,
- # _sourceIncludes: Specifies which attribute we include in
- # result.
- # _sourceExcludes: Specifies which attribute we exclude in
- # result.
- (
- : String,
- : ReviewFilterInput,
- : Int,
- : Int,
- : [String],
- : [String]
- ): Reviews
- }