OBJECT
CreatorCampCategory
A CreatorCampCategory is a grouping of CreatorCamp articles. https://www.twitch.tv/creatorcamp.
link GraphQL Schema definition
1 type CreatorCampCategory { 2 3 # A list of CreatorCamp articles in this category. 4 : [CreatorCampArticle!]! 5 6 # The ID of the category is also a human-readable "slug" e.g. "learn-the-basics". 7 : ID! 8 9 # The localized title of the category. 10 : String! 11 12 }