OBJECT

Library

A media library

link GraphQL Schema definition

  • type Library {
  • id: Int!
  • # Library type (0 - movies, 1 - series)
  • kind: Int!
  • # Human readable name of the Library (unused)
  • name: String!
  • # Path that this library manages
  • filePath: String!
  • # Whether olaris-server is currently scanning the library
  • isRefreshing: Boolean!
  • # Backend for the library (0 - Local filesystem, 1 - Rclone)
  • backend: Int!
  • # If Backend is Rclone it will return the name of the remote
  • rcloneName: String
  • # This attribute will be false whenever a Rclone remote can't be reached
  • healthy: Boolean!
  • movies: [Movie]!
  • episodes: [Episode]!
  • series: [Series]!
  • }