tstor/graphql/sources/qbittorrent_mutation.graphql
royalcat 0219e41b52
Some checks failed
docker / build-docker (push) Failing after 2m48s
cleanup change
2024-12-14 21:31:35 +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!]!
}