OBJECT

GameInfo

link GraphQL Schema definition

  • type GameInfo {
  • # The Metacritic URL for the game
  • url: String!
  • # The title of the game
  • title: String!
  • # The platform the game is on
  • platform: String!
  • # The game's Metacritic score from critics.
  • criticScore: Int!
  • # The release date of the game
  • releaseDate: String!
  • # The developer of the game
  • developer: String!
  • # The publisher/s of the game
  • publisher: [String!]
  • # The genres of the game
  • genres: [String!]
  • # The number of critic reviews on the game
  • numOfCriticReviews: Int!
  • # The number of critic reviews on the game that are deemed positive
  • numOfPositiveCriticReviews: Int!
  • # The number of critic reviews on the game that are deemed mixed
  • numOfMixedCriticReviews: Int!
  • # The number of critic reviews on the game that are deemed negative
  • numOfNegativeCriticReviews: Int!
  • # URL that links to the image used for the game on Metacritic
  • productImage: String!
  • }

link Require by