OBJECT

VerticalShelfGroup

A grouping of one or more shelves.

link GraphQL Schema definition

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