OBJECT
TwitchAccount
The information related to a Twitch Account.
link GraphQL Schema definition
1 type TwitchAccount { 2 3 # The unique Twitch identifier. 4 : String! 5 6 # A user-styled version of their login. 7 : String 8 9 # URL of the user’s profile image. 10 : String 11 12 # The current status of the Twitch account 13 : TwitchAccountStatus! 14 15 }