tstor/plugins/qbittorrent/graphql/mutation.graphql
2025-04-03 03:19:01 +04:00

14 lines
279 B
GraphQL

type Mutation {
cleanup(run: Boolean!): CleanupResponse! @resolver
cleanupUnregistred(run: Boolean!): CleanupUnregistredResponse! @resolver
}
type CleanupResponse {
count: Int!
hashes: [String!]!
}
type CleanupUnregistredResponse {
count: Int!
hashes: [String!]!
}