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