OBJECT

CreatorCampArticle

A CreatorCampArticle is a represenation of an article from https://www.twitch.tv/creatorcamp.

link GraphQL Schema definition

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