OBJECT
Game
Legacy game type used by AGA.
link GraphQL Schema definition
1 type Game { 2 3 # Product ID of the game 4 ID! : 5 6 # Video urls 7 String] : [ 8 9 # Keywords that describe the game 10 String] : [ 11 12 # DateTime the game was released in 2012-01-21T00:00:00.000Z format 13 Time : 14 15 # ESRB rating 16 String : 17 18 # Pan European Game Information identifier 19 String : 20 21 # Unterhaltungssoftware Selbstkontrolle (German Rating Board) 22 String : 23 24 # Developer url 25 String : 26 27 # List of genres that apply to the game 28 String] : [ 29 30 # Single player, co-op, etc. 31 String] : [ 32 33 # Links to social media platforms 34 SocialMedia] : [ 35 36 # Devloper that worked on the game 37 String : 38 39 # URL that links to a transparent image 40 Media : 41 42 # URL that links to an image used for the Prime Gaming crown 43 Media : 44 45 # URL that links to a thumbnail for the game trailer 46 Media : 47 48 # Publisher of the game 49 String : 50 51 # URL for the hero image 52 Media : 53 54 # URL for the banner image 55 Media : 56 57 # Description 58 String : 59 60 # Other Developers (for games developed by multiple studios). 61 String] : [ 62 63 }