OBJECT

Shelf

An ordered list of content to render with metadata on the content.

link GraphQL Schema definition

1type Shelf {
2
3# The ordered content for the shelf.
4content: ShelfContentConnection!
5
6# How to present the content in the shelf.
7displayType: String!
8
9# A unique identifier for the shelf for use in tracking and pagination.
10id: ID!
11
12# The title for the shelf.
13title: ShelfTitle!
14
15# Information used for recommendation tracking.
16trackingInfo: TrackingInfo!
17
18}