ENUM

StreamSort

Possible ways of sorting collections of live streams.

link GraphQL Schema definition

1enum 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.
5VIEWER_COUNT
6
7# Sort streams by number of concurrent viewers, ascending (least viewers first).
8VIEWER_COUNT_ASC
9
10# Sort by stream creation time, most recently started streams first.
11RECENT
12
13# Sort by relevance to the current user.
14RELEVANCE
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.
20CSGO_SKILL
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.
26LOL_SUMMONER_RANK
27}