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