INPUT_OBJECT

GameStreamOptions

Optional input to filter game specific streams. add additional optional fields to this input.

link GraphQL Schema definition

1input GameStreamOptions {
4
2# Filter streams based on restriction types.
3includeRestricted: [StreamRestrictionType!]
8
5# Broadcaster languages to filter streams by.
6# Deprecated: use language tags instead.
7languages: [String!]
11
9# The locale of the user.
10locale: String
15
12# If sorted by relevance, this provides additional context used to influence
13# recommendations.
14recommendationsContext: RecommendationsContext
18
16# RequestID must be specified if sort=RELEVANCE.
17requestID: ID
22
19# The sort param can be used to change the default sorting, which sometimes is
20# specific to specific games.
21sort: StreamSort
25
23# The tags param are an array of tag ID as optional filters for streams.
24tags: [String!]
26}