OBJECT
GameAssets
Text and media assets for a game
link GraphQL Schema definition
1 type GameAssets { 2 3 # Name of the game 4 : String 5 6 # Short-form description of the game 7 : String 8 9 # Long-form description of the game 10 : String 11 12 # Release date of the game 13 : Time 14 15 # Name of the game publisher 16 : String 17 18 # Name of the game developer 19 : String @deprecated( reason: "Use `developers` instead." ) 20 21 # Names of the game developers 22 : [String] 23 24 # Platforms the game is available on 25 : [String] 26 27 # Genres applicable to the game 28 : [String] 29 30 # Game modes supported by the game 31 : [String] 32 33 # Instructions for purchasing the game 34 : String 35 36 # A list of faqs relating to the game 37 : [FAQ] 38 39 # Image representing the developer or publisher of the game 40 : Media 41 42 }