qbittorrent source files

This commit is contained in:
royalcat 2024-10-19 04:24:14 +03:00
parent 63e63c1c37
commit aa0affb019
30 changed files with 1338 additions and 242 deletions

View file

@ -1,5 +1,6 @@
type Query {
torrentDaemon: TorrentDaemonQuery @resolver
qbittorrentDaemon: QBitTorrentDaemonQuery @resolver
fsEntry(path: String!): FsEntry
}

View file

@ -0,0 +1,3 @@
type QBitTorrentDaemonQuery {
torrents: [QTorrent!]! @resolver
}

View file

@ -0,0 +1,5 @@
type QTorrent {
name: String!
hash: String!
sourceFiles: [String!]! @resolver
}