OBJECT

VerticalShelf

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

link GraphQL Schema definition

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