OBJECT

ChannelHomeShelves

The shelves that are shown on a channel's home page.

link GraphQL Schema definition

1type ChannelHomeShelves {
2
3# A list of categories displayed on a channel home's Category Shelf.
4categoryShelf(first: Int): ChannelHomeCategoryShelf
5
6# A list of suggested categories to display on a channel home's Category Shelf.
7categoryShelfSuggestions(first: Int): ChannelHomeCategorySuggestionsShelf
8
9# The type and, if applicable, the list of users displayed in a channel home's
10# Streamer Shelf.
11streamerShelf(first: Int): ChannelHomeStreamerShelf
12
13}