ENUM
StreamSort
Possible ways of sorting collections of live streams.
link GraphQL Schema definition
1 enum StreamSort { 2 3 #   Sort streams by number of concurrent viewers, descending (most viewers first). 4 #   This is the default if StreamSort is not set or is a deprecated field. 5 6 7 #   Sort streams by number of concurrent viewers, ascending (least viewers first). 8 9 10 #   Sort by stream creation time, most recently started streams first. 11 12 13 #   Sort by relevance to the current user. 14 15 16 #   Sort streams for the game "Counter-Strike: Global Offensive" by skill,  17 #   descending (highest skill first). 18 #   Other streams are included last, sorted at random. 19 #   Deprecated: this sort option no longer exists. 20 21 22 #   Sort streams for the game "League of Legends" by summoner rank, descending  23 #   (highest rank first). 24 #   Other streams are included last, sorted at random. 25 #   Deprecated: this sort option no longer exists. 26 27 } 
              link Required by
- GameA Game is often the subject of a Stream on Twitch.
 - GameStreamOptionsOptional input to filter game specific streams. add additional optional fields to this input.
 - StreamOptionsOptional inputs to filter streams add additional optional fields for filtering streams to the StreamOptions input type.
 - UserTwitch user.