OBJECT
Shelf
An ordered list of content to render with metadata on the content.
link GraphQL Schema definition
1 type Shelf { 2 3 # The ordered content for the shelf. 4 : ShelfContentConnection! 5 6 # How to present the content in the shelf. 7 : String! 8 9 # A unique identifier for the shelf for use in tracking and pagination. 10 : ID! 11 12 # The title for the shelf. 13 : ShelfTitle! 14 15 # Information used for recommendation tracking. 16 : TrackingInfo! 17 18 }