type Mutation {
    validateTorrents(filter: TorrentFilter!): Boolean!
    cleanupTorrents(files: Boolean, dryRun: Boolean!): Int!
}

input TorrentFilter @oneOf {
    everything: Boolean
    infohash: String
    # pathGlob: String!
}