tstor/graphql/mutation.graphql
2024-01-28 23:22:49 +03:00

10 lines
No EOL
233 B
GraphQL

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