OBJECT
CreatorCampArticle
A CreatorCampArticle is a represenation of an article from https://www.twitch.tv/creatorcamp.
link GraphQL Schema definition
1 type CreatorCampArticle { 2 3 # The ID of the article is also a human readable "slug" e.g. "twitch-101". 4 : ID! 5 6 # The locale associated with this article's translations. 7 : String! 8 9 # A URL pointing to an image associated with this article. 10 : String 11 12 # A short introduction for the article. 13 : String 14 15 # The localized title of the article. 16 : String! 17 18 # The cannonical location of this article on the CreatorCamp site. 19 : String! 20 21 # The length of the article's video in seconds. 22 : Int 23 24 # A URL pointing to the embedded video in this article. Most 25 # CreatorCamp articles have an assoicated video. 26 : String 27 28 }