tstor/plugins/qbittorrent/graphql/query.graphql
2025-04-03 03:19:01 +04:00

13 lines
209 B
GraphQL

type Query {
torrents(filter: TorrentFilter): [Torrent!]! @resolver
}
input TorrentFilter {
sourcesCount: IntFilter
}
type Torrent {
name: String!
hash: String!
sourceFiles: [String!]! @resolver
}