OBJECT
AccountConnectionSet
The information about all of a user's connected accounts.
link GraphQL Schema definition
1 type AccountConnectionSet { 2 3 # Connection information about a user's Blizzard account. 4 : UserBlizzardConnectionLink 5 6 # Connection infromation about a user's Facebook account. 7 : UserFacebookConnectionLink 8 9 # Whether or not the user has a linked amazon account. 10 : Boolean 11 12 # Connection information about a user's Riot account. 13 : UserRiotConnectionLink 14 15 # Connection information about a user's Steam account. 16 : UserSteamConnectionLink 17 18 # Connection information about a user's Twitter account. 19 : UserTwitterConnectionLink 20 21 # Connection information about a user's Youtube account. 22 : UserYoutubeConnectionLink 23 24 }