OBJECT

GameAssets

Text and media assets for a game

link GraphQL Schema definition

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

link Required by