torrent list

This commit is contained in:
royalcat 2024-04-27 14:00:34 +03:00
parent d8ee8a3a24
commit 0d7aac068c
23 changed files with 1285 additions and 698 deletions
graphql/types

View file

@ -7,6 +7,9 @@ type Torrent {
files: [TorrentFile!]!
excludedFiles: [TorrentFile!]!
peers: [TorrentPeer!]!
# if at least one piece of the torrent is request to download and not already downloaded
downloading: Boolean!
}
type TorrentFile {
@ -21,4 +24,4 @@ type TorrentPeer {
discovery: String!
port: Int!
clientName: String!
}
}