OBJECT

ShelfContentEdge

The content to render in a shelf.

link GraphQL Schema definition

1type ShelfContentEdge {
2
3# As pagination is currently not supported by the backend, this will always be the
4# zero value.
5cursor: Cursor!
6
7# The metadata to show for each content edge.
8metadata: ShelfContentMetadata
9
10# The underlying content to render.
11node: ShelfContent
12
13# Used to associate promotions for tracking.
14promotionsCampaignID: ID!
15
16# Used to determine what the source of the shelf content is from.
17sourceType: SourceType!
18
19# Used in client tracking.
20trackingID: ID!
21
22}