parent
10c3f126f0
commit
5b11b70370
32 changed files with 243 additions and 6575 deletions
daemons/atorrent/graphql
|
@ -1,3 +1,21 @@
|
|||
type TorrentFS implements Dir & FsEntry {
|
||||
name: String!
|
||||
torrent: Torrent!
|
||||
entries: [FsEntry!]! @resolver
|
||||
}
|
||||
|
||||
type TorrentFileEntry implements File & FsEntry {
|
||||
name: String!
|
||||
torrent: Torrent!
|
||||
size: Int!
|
||||
}
|
||||
|
||||
type TorrentProgress implements Progress {
|
||||
torrent: Torrent!
|
||||
current: Int!
|
||||
total: Int!
|
||||
}
|
||||
|
||||
type Torrent {
|
||||
name: String! @resolver
|
||||
infohash: String!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue