OBJECT

Movie

A movie file

link GraphQL Schema definition

  • type Movie {
  • # Official title according to the MovieDB
  • name: String!
  • # Title based on parsed filename
  • title: String!
  • # Release year
  • year: String!
  • # Short description of the movie
  • overview: String!
  • # IMDB ID
  • imdbID: String!
  • # TMDB ID
  • tmdbID: Int!
  • # ID to retrieve backdrop
  • backdropPath: String!
  • # ID to retrieve poster
  • posterPath: String!
  • # URL of the poster image
  • #
  • # Arguments
  • # width: [Not documented]
  • posterURL(width: Int): String!
  • uuid: String!
  • files: [MovieFile]!
  • playState: PlayState
  • }