OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • # Retrieves a single game based on title and platform
  • #
  • # Arguments
  • # input:
  • game(input: Game!): GameInfo
  • # Retrieves a list of games based on titles and platforms
  • #
  • # Arguments
  • # input:
  • games(input: [Game!]): [GameInfo]
  • # Retrieves a single album based on the title of the album and artist
  • #
  • # Arguments
  • # input:
  • album(input: Album!): AlbumInfo
  • # Retrieves a list of albums based on the titles of the albums and artists
  • #
  • # Arguments
  • # input:
  • albums(input: [Album!]): [AlbumInfo]
  • # Retrieves a movie based on the title and year it was released
  • #
  • # Arguments
  • # input:
  • movie(input: Movie!): MovieInfo
  • # Retrieves a list of movies based on the titles and years they were released
  • #
  • # Arguments
  • # input:
  • movies(input: [Movie!]): [MovieInfo]
  • # Retrieve a TV show based on the title and season (if none, it gets an overview
  • # of the series as a whole)
  • #
  • # Arguments
  • # input:
  • tvshow(input: TVShow!): TVShowInfo
  • # Retrieves a list of TV shows based on the titles and seasons
  • #
  • # Arguments
  • # input:
  • tvshows(input: [TVShow!]): [TVShowInfo]
  • }

link Require by

This element is not required by anyone