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