OBJECT

MovieFile

link GraphQL Schema definition

  • type MovieFile {
  • # Filename
  • fileName: String!
  • # Absolute path to the filesystem
  • filePath: String!
  • libraryId: Int!
  • uuid: String!
  • # Stream information (subtitles / audio and video streams)
  • streams: [Stream]!
  • # Total duration of the first video stream in seconds
  • totalDuration: Float
  • # FileSize in bytes
  • fileSize: String!
  • # Get the library for the given file
  • library: Library!
  • }