OBJECT

Game

Legacy game type used by AGA.

link GraphQL Schema definition

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