OBJECT
Product
A product represents a general item sold. The variants that make it up have specific sizes, colors, etc
link GraphQL Schema definition
- type Product {
- : ID!
- # If present, the special product type. If absent, it is a normal product
- : ProductType
- # The main product name
- : String
- # A description of the product
- : String
- # If present, a description of the product that will be used within the mobile
- # apps
- : String
- # If present, a description of the product that will be used within the webstore
- : String
- # The SKU or internal style name of the product
- : String
- # The brand of the product
- : String
- # The SKU or internal style name of the product used by the brand or vendor
- : String
- # The variants that are part of this product
- : [Variant!]!
- # If present, the DateTimeTz that the product was published to the webstore.
- : DateTimeTz
- # The URL slug of the product, for use in the webstore
- : String
- # The tax code used for this product with Avalara
- : String
- # If present, the URL of a video for this product
- : String
- }