9 lines
160 B
GraphQL
9 lines
160 B
GraphQL
|
type QBitTorrentDaemonMutation {
|
||
|
cleanup(dryRun: Boolean!): QBitCleanupResponse! @resolver
|
||
|
}
|
||
|
|
||
|
type QBitCleanupResponse {
|
||
|
count: Int!
|
||
|
hashes: [String!]!
|
||
|
}
|