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