OBJECT
Library
A media library
link GraphQL Schema definition
- type Library {
- : Int!
- # Library type (0 - movies, 1 - series)
- : Int!
- # Human readable name of the Library (unused)
- : String!
- # Path that this library manages
- : String!
- # Whether olaris-server is currently scanning the library
- : Boolean!
- # Backend for the library (0 - Local filesystem, 1 - Rclone)
- : Int!
- # If Backend is Rclone it will return the name of the remote
- : String
- # This attribute will be false whenever a Rclone remote can't be reached
- : Boolean!
- : [Movie]!
- : [Episode]!
- : [Series]!
- }