10 lines
233 B
GraphQL
10 lines
233 B
GraphQL
|
type Mutation {
|
||
|
validateTorrents(filter: TorrentFilter!): Boolean!
|
||
|
cleanupTorrents(files: Boolean, dryRun: Boolean!): Int!
|
||
|
}
|
||
|
|
||
|
input TorrentFilter @oneOf {
|
||
|
everything: Boolean
|
||
|
infohash: String
|
||
|
# pathGlob: String!
|
||
|
}
|