OBJECT
VerticalSubDirectory
A container of content for a vertical by category, grouped by shelves.
link GraphQL Schema definition
1 type VerticalSubDirectory { 2 3 # The one or more contexts for which this directory contains content for. 4 : [VerticalContentContext!] 5 6 # The vertical's unique Twitch identifier. 7 : ID! 8 9 # List of shelf groups containing content for this vertical category. 10 : [VerticalShelfGroup!] 11 12 # The subtitle for the shelf group. 13 : ShelfTitle! 14 15 # The title for the shelf. 16 : ShelfTitle! 17 18 # Used in client tracking. 19 : ID! 20 21 }