rework
This commit is contained in:
parent
e62df2e9fc
commit
1912b5baf0
39 changed files with 8489 additions and 476 deletions
plugins/qbittorrent/graphql
13
plugins/qbittorrent/graphql/query.graphql
Normal file
13
plugins/qbittorrent/graphql/query.graphql
Normal file
|
@ -0,0 +1,13 @@
|
|||
type Query {
|
||||
torrents(filter: TorrentFilter): [Torrent!]! @resolver
|
||||
}
|
||||
|
||||
input TorrentFilter {
|
||||
sourcesCount: IntFilter
|
||||
}
|
||||
|
||||
type Torrent {
|
||||
name: String!
|
||||
hash: String!
|
||||
sourceFiles: [String!]! @resolver
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue