OBJECT
GameV2
link GraphQL Schema definition
1 type GameV2 { 2 3 # Unique identifier for the Game 4 : ID! 5 6 # URL of the game website 7 : String 8 9 # The URL to the third party's (e.g. Riot's) technical support page 10 : String 11 12 # Text and media assets for a game 13 : GameAssets 14 15 # Account linking configuration for a third-party 16 : AccountLinkConfig 17 18 # Information about a customers relationship to a game 19 : GameSelfConnection 20 21 }