OBJECT

ChannelHomeCategorySuggestionsShelfEdge

Contains a category and a boolean to denote whether the user has chosen to hide that category from their channel home page's category shelf.

link GraphQL Schema definition

1type ChannelHomeCategorySuggestionsShelfEdge {
2
3# This is true if the user has chosen to hide this category from their category
4# shelf.
5isHidden: Boolean!
6
7# The category.
8node: Game
9
10}