INTERFACE
ProductCatalogItem
A product appearing in the product catalog.
link GraphQL Schema definition
1 interface ProductCatalogItem { 2 3 # A list of benefits the user will receive when purchasing the product. 4 : [ProductCatalogBenefit!] 5 6 # A description of the product. 7 : String 8 9 # The identifier of the product. 10 : ID! 11 12 # A list of offers available for purchasing the product. 13 : [Offer!] 14 15 # The owner (ex: channel) of the product. 16 : ID! 17 18 # The title of the product. 19 : String! 20 21 }