tstor/ui/lib/api/torrent_stats.graphql

13 lines
237 B
GraphQL
Raw Normal View History

2024-08-15 08:23:44 +00:00
query TorrentTotalStats($since: DateTime!) {
torrentDaemon {
statsHistory(since: $since) {
timestamp
downloadedBytes
uploadedBytes
totalPeers
activePeers
connectedSeeders
}
}
}