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