tstor/graphql/sources/qbittorrent_mutation.graphql

15 lines
312 B
GraphQL
Raw Normal View History

2024-11-15 13:39:56 +00:00
type QBitTorrentDaemonMutation {
2024-11-24 17:33:44 +00:00
cleanup(run: Boolean!): QBitCleanupResponse! @resolver
2024-12-15 21:43:04 +00:00
cleanupUnregistred(run: Boolean!): QBitCleanupUnregistredResponse! @resolver
2024-11-15 13:39:56 +00:00
}
type QBitCleanupResponse {
count: Int!
hashes: [String!]!
}
2024-12-15 21:43:04 +00:00
type QBitCleanupUnregistredResponse {
count: Int!
hashes: [String!]!
}