OBJECT

MovieInfo

link GraphQL Schema definition

  • type MovieInfo {
  • # The Metacritic URL for the movie
  • url: String!
  • # The title of the movie
  • title: String!
  • # The movie's Metacritic score from critics.
  • criticScore: Int!
  • # The year the movie was released
  • year: String!
  • # A list of the director/s of the movie
  • director: [String!]
  • # The release date of the movie
  • releaseDate: String!
  • # The genres of the movie
  • genres: [String!]
  • # A list of the cast of the movie
  • cast: [String!]
  • # The movie's rating based on the Motion Picture Association film rating system
  • rating: String!
  • # How long the movie is in minutes
  • runtime: String!
  • # A brief summary of what the movie is about
  • summary: String!
  • # The number of critic reviews on the movie
  • numOfCriticReviews: Int!
  • # The number of critic reviews on the movie that are deemed positive
  • numOfPositiveCriticReviews: Int!
  • # The number of critic reviews on the movie that are deemed mixed
  • numOfMixedCriticReviews: Int!
  • # The number of critic reviews on the movie that are deemed negative
  • numOfNegativeCriticReviews: Int!
  • # URL that links to the image used for the movie on Metacritic
  • productImage: String!
  • }

link Require by