OBJECT
Movie
A movie file
link GraphQL Schema definition
- type Movie {
- # Official title according to the MovieDB
- : String!
- # Title based on parsed filename
- : String!
- # Release year
- : String!
- # Short description of the movie
- : String!
- # IMDB ID
- : String!
- # TMDB ID
- : Int!
- # ID to retrieve backdrop
- : String!
- # ID to retrieve poster
- : String!
- # URL of the poster image
- #
- # Arguments
- # width: [Not documented]
- (: Int): String!
- : String!
- : [MovieFile]!
- : PlayState
- }