OBJECT
CurrentUser
Signed in customers information.
link GraphQL Schema definition
1 type CurrentUser { 2 3 # Unique identifier for a user 4 ID : 5 6 # DEPRECATED: use obfuscatedEmail 7 String : 8 9 # The user's obfuscated email address. Ex: c******e@gmail.com. 10 String : 11 12 # Details if the customer is signed in 13 Boolean! : 14 15 # Details if the customer is signed up for Twitch Prime. This will be true if 16 # the user is Amazon Prime and they've gone through the Twitch Prime signup flow. 17 Boolean! : 18 19 # Details if the customer is signed up for Amazon Prime. 20 Boolean! : 21 22 # The Twitch Accounts associated with the current signed in user. 23 TwitchAccount!] : [ 24 25 # The first name of the current signed in user. Will be blank if the customer 26 # does not have a first name (there are valid customer in this state). 27 String : 28 29 # The full name of the current signed in user. Will be blank if the customer 30 # does not have a full name (there are valid customer in this state). 31 String : 32 33 # The Twitch Prime signup status of the user. 34 PrimeSignupStatus! : 35 36 # The url for additional mobile verification/setup for Twitch Prime signup. 37 # Currently not available for ROW countries. 38 String : 39 40 # The users preferences across Amazon and Twitch Prime 41 UserPreferences : 42 43 }