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]
  • movies(
  • uuid: String,
  • offset: Int,
  • limit: Int,
  • sort: MovieSort,
  • sortDirection: SortDirection
  • ): [Movie]!
  • libraries: [Library]!
  • # Arguments
  • # uuid: [Not documented]
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # sort: [Not documented]
  • # sortDirection: [Not documented]
  • series(
  • uuid: String,
  • offset: Int,
  • limit: Int,
  • sort: SeriesSort,
  • sortDirection: SortDirection
  • ): [Series]!
  • # Arguments
  • # uuid: [Not documented]
  • season(uuid: String): Season!
  • # Arguments
  • # uuid: [Not documented]
  • episode(uuid: String): Episode
  • users: [User]!
  • recentlyAdded: [MediaItem]
  • upNext: [MediaItem]
  • # Arguments
  • # name: [Not documented]
  • search(name: String!): [SearchItem]
  • invites: [Invite]
  • # List of all remotes found in a rclone config file if one exists.
  • remotes: [String]!
  • mediaStats: MediaStatsResponse!
  • # List folders in the given path.
  • #
  • # Arguments
  • # path: Path argument as FileLocator path. Examples:
  • # 'rclone#gdrive/media/movies', 'local#/home/animazing/movies/'
  • folders(path: String!): [String]!
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • unidentifiedMovieFiles(offset: Int, limit: Int): [MovieFile]!
  • # Arguments
  • # offset: [Not documented]
  • # limit: [Not documented]
  • unidentifiedEpisodeFiles(offset: Int, limit: Int): [EpisodeFile]!
  • # Arguments
  • # query: [Not documented]
  • tmdbSearchMovies(query: String!): [TmdbMovieSearchItem]!
  • # Arguments
  • # query: [Not documented]
  • tmdbSearchSeries(query: String!): [TmdbSeriesSearchItem]!
  • }

link Require by

This element is not required by anyone