OBJECT
Query
The query type, represents all of the entry points into our object graph
link GraphQL Schema definition
- type Query {
- # Arguments
- # uuid: [Not documented]
- # offset: [Not documented]
- # limit: [Not documented]
- # sort: [Not documented]
- # sortDirection: [Not documented]
- (
- : String,
- : Int,
- : Int,
- : MovieSort,
- : SortDirection
- ): [Movie]!
- : [Library]!
- # Arguments
- # uuid: [Not documented]
- # offset: [Not documented]
- # limit: [Not documented]
- # sort: [Not documented]
- # sortDirection: [Not documented]
- (
- : String,
- : Int,
- : Int,
- : SeriesSort,
- : SortDirection
- ): [Series]!
- # Arguments
- # uuid: [Not documented]
- (: String): Season!
- # Arguments
- # uuid: [Not documented]
- (: String): Episode
- : [User]!
- : [MediaItem]
- : [MediaItem]
- # Arguments
- # name: [Not documented]
- (: String!): [SearchItem]
- : [Invite]
- # List of all remotes found in a rclone config file if one exists.
- : [String]!
- : MediaStatsResponse!
- # List folders in the given path.
- #
- # Arguments
- # path: Path argument as FileLocator path. Examples:
- # 'rclone#gdrive/media/movies', 'local#/home/animazing/movies/'
- (: String!): [String]!
- # Arguments
- # offset: [Not documented]
- # limit: [Not documented]
- (: Int, : Int): [MovieFile]!
- # Arguments
- # offset: [Not documented]
- # limit: [Not documented]
- (: Int, : Int): [EpisodeFile]!
- # Arguments
- # query: [Not documented]
- (: String!): [TmdbMovieSearchItem]!
- # Arguments
- # query: [Not documented]
- (: String!): [TmdbSeriesSearchItem]!
- }
link Require by
This element is not required by anyone