OBJECT
VerticalShelf
An ordered list of content to render with metadata on the content.
link GraphQL Schema definition
1 type VerticalShelf { 2 3 # The ordered content for the shelf. 4 : ShelfContentConnection! 5 6 # The one or more contexts for which this shelf contains content for. 7 : [VerticalContentContext!] 8 9 # A unique identifier for the shelf. 10 : ID! 11 12 # The subtitle for the shelf group. 13 : ShelfTitle 14 15 # The title for the shelf. 16 : ShelfTitle 17 18 # Used in client tracking. 19 : ID! 20 21 # The type of this shelf. 22 : VerticalShelfType! 23 24 }