OBJECT
FeaturedStream
FeaturedStream contains extra metadata for presenting a featured Stream.
link GraphQL Schema definition
1 type FeaturedStream { 2 3 # The featured stream's broadcaster. 4 : User 5 6 # The featured channel. 7 : Channel @deprecated( reason: "Use featuredStream.broadcaster instead." ) 8 9 # A markdown description of the stream, available when a stream is featured. 10 : String 11 12 # An HTML description of the stream, available when a stream is featured. 13 : String @deprecated( reason: "Use featuredStream.description instead" ) 14 15 # A URL for a special thumbnail image, when this stream is featured. 16 : String 17 18 # Is this stream featured because it is scheduled? 19 : Boolean 20 21 # Is this stream featured because it is sponsored? 22 : Boolean 23 24 # A lower priority level means the stream is higher priority. 25 : Int 26 27 # The featured live steam. 28 : Stream 29 30 # When featured, the title of the stream. 31 : String 32 33 }