INTERFACE

ProductCatalogItem

A product appearing in the product catalog.

link GraphQL Schema definition

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