OBJECT

VerticalSubDirectory

A container of content for a vertical by category, grouped by shelves.

link GraphQL Schema definition

1type VerticalSubDirectory {
2
3# The one or more contexts for which this directory contains content for.
4contentContext: [VerticalContentContext!]
5
6# The vertical's unique Twitch identifier.
7id: ID!
8
9# List of shelf groups containing content for this vertical category.
10shelfGroups: [VerticalShelfGroup!]
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}