OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Retrieves a single game based on title and platform
- #
- # Arguments
- # input:
- Game!): GameInfo ( :
- # Retrieves a list of games based on titles and platforms
- #
- # Arguments
- # input:
- Game!]): [GameInfo] ( : [
- # Retrieves a single album based on the title of the album and artist
- #
- # Arguments
- # input:
- Album!): AlbumInfo ( :
- # Retrieves a list of albums based on the titles of the albums and artists
- #
- # Arguments
- # input:
- Album!]): [AlbumInfo] ( : [
- # Retrieves a movie based on the title and year it was released
- #
- # Arguments
- # input:
- Movie!): MovieInfo ( :
- # Retrieves a list of movies based on the titles and years they were released
- #
- # Arguments
- # 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!): TVShowInfo ( :
- # Retrieves a list of TV shows based on the titles and seasons
- #
- # Arguments
- # input:
- TVShow!]): [TVShowInfo] ( : [
- }
link Require by
This element is not required by anyone