OBJECT

CreatorCampCategory

A CreatorCampCategory is a grouping of CreatorCamp articles. https://www.twitch.tv/creatorcamp.

link GraphQL Schema definition

1type CreatorCampCategory {
2
3# A list of CreatorCamp articles in this category.
4articles: [CreatorCampArticle!]!
5
6# The ID of the category is also a human-readable "slug" e.g. "learn-the-basics".
7id: ID!
8
9# The localized title of the category.
10title: String!
11
12}