OBJECT

GameV2

link GraphQL Schema definition

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