16 lines
260 B
GraphQL
16 lines
260 B
GraphQL
|
mutation MarkTorrentDownload($infohash: String!) {
|
||
|
downloadTorrent(infohash: $infohash) {
|
||
|
task {
|
||
|
id
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
query ListTorrents {
|
||
|
torrents {
|
||
|
name
|
||
|
infohash
|
||
|
bytesCompleted
|
||
|
bytesMissing
|
||
|
}
|
||
|
}
|