tstor/graphql/mutation.graphql

10 lines
233 B
GraphQL
Raw Normal View History

2024-01-28 20:22:49 +00:00
type Mutation {
validateTorrents(filter: TorrentFilter!): Boolean!
cleanupTorrents(files: Boolean, dryRun: Boolean!): Int!
}
input TorrentFilter @oneOf {
everything: Boolean
infohash: String
# pathGlob: String!
}