mutation MarkTorrentDownload($infohash: String!) {
    downloadTorrent(infohash: $infohash) {
        task {
            id
        }
    }
}

query ListTorrents {
    torrents {
        name
        infohash
        bytesCompleted
        bytesMissing
    }
}