tstor/ui/lib/api/torrent.graphql
2024-04-24 20:36:33 +03:00

16 lines
No EOL
260 B
GraphQL

mutation MarkTorrentDownload($infohash: String!) {
downloadTorrent(infohash: $infohash) {
task {
id
}
}
}
query ListTorrents {
torrents {
name
infohash
bytesCompleted
bytesMissing
}
}