OBJECT

Onboarding

Current state of the user in the onboarding process.

link GraphQL Schema definition

1type Onboarding {
2
3# Retrieves a list of streams that have been selected for onboarding based on a
4# user's followed games.
5# `first` is the number of streams PER FOLLOWED GAME to fetch.
6# `locale` is a language code that will filter streams by if there are viewers
7# with that language code (ex. "en-US", "es-ES", or "de-AT").
8# `languages` is list of language codes that will be used to filter streams by the
9# broadcaster language. (ex. [EN, KO]).
10# `games` are a list of game ids that would replace the user's followed games for
11# fetching the streams.
12onboardingStreams(
13first: Int,
14locale: String,
15languages: [Language!],
16games: [String!]
17): [Stream] @deprecated( reason: "This feature has been sunset." )
18
19# List of channel IDs skipped by a user during onboarding.
20skippedChannelIDs: [ID!] @deprecated( reason: "This feature is retired" )
21
22}