tstor/graphql/sources/qbittorrent_mutation.graphql
royalcat ee2fc5ab9d
All checks were successful
docker / build-docker (push) Successful in 3m7s
qbittorrent cleanup
2024-12-16 00:43:04 +03:00

14 lines
312 B
GraphQL

type QBitTorrentDaemonMutation {
cleanup(run: Boolean!): QBitCleanupResponse! @resolver
cleanupUnregistred(run: Boolean!): QBitCleanupUnregistredResponse! @resolver
}
type QBitCleanupResponse {
count: Int!
hashes: [String!]!
}
type QBitCleanupUnregistredResponse {
count: Int!
hashes: [String!]!
}