OBJECT

VerticalDirectory

A container of content for a vertical grouped by shelves.

link GraphQL Schema definition

1type VerticalDirectory {
2
3# The vertical's unique Twitch identifier.
4id: ID!
5
6# The vertical's backend name.
7name: String
8
9# List of shelf groups containing content for this vertical.
10shelfGroups: [VerticalShelfGroup!]
11
12# The human readable slug for the vertical directory, used in the URL.
13slug: String
14
15# The subtitle for the shelf group.
16subtitle: ShelfTitle!
17
18# The title for the shelf.
19title: ShelfTitle!
20
21# Used in client tracking.
22trackingID: ID!
23
24}