10 lines
167 B
GraphQL
10 lines
167 B
GraphQL
type Mutation {
|
|
torrentDaemon: TorrentDaemonMutation @resolver
|
|
|
|
uploadFile(dir: String!, file: Upload!): Boolean!
|
|
dedupeStorage: Int!
|
|
}
|
|
|
|
type Task {
|
|
id: ID!
|
|
}
|