OBJECT

SubscriberScore

Information pertaining to user's subscriber score. Contains subscription count, sub points, emote limits, and information about the next subscriber level.

link GraphQL Schema definition

1type SubscriberScore {
2
3# Breakdown of subscriber score by product tier.
4breakdown: [SubscriberScoreBreakdown!]
5
6# Current subscriber count.
7count: Int!
8
9# Breakdown of total subs by product tier.
10countBreakdown: [SubscriberCountBreakdown!]
11
12# Current subscriber score.
13current: Int!
14
15# Current number of emotes unlocked.
16currentEmoteLimit: Int!
17
18# Next goal to unlock more emotes.
19# Will be null if max score already reached.
20next: Int
21
22# Emote limit after reaching nextScoreGoal.
23# Will be null if max emote limit reached.
24nextEmoteLimit: Int
25
26}