update
This commit is contained in:
parent
7b1863109c
commit
ef751771d2
107 changed files with 9435 additions and 850 deletions
graphql
|
@ -1,6 +1,6 @@
|
|||
type Query {
|
||||
torrents(filter: TorrentsFilter, pagination: Pagination): [Torrent!]!
|
||||
fsListDir(path: String!): [DirEntry!]!
|
||||
fsListDir(path: String!): ListDirResponse!
|
||||
}
|
||||
|
||||
input TorrentsFilter {
|
||||
|
@ -11,6 +11,11 @@ input TorrentsFilter {
|
|||
peersCount: IntFilter
|
||||
}
|
||||
|
||||
type ListDirResponse {
|
||||
root: DirEntry!
|
||||
entries: [DirEntry!]!
|
||||
}
|
||||
|
||||
input Pagination {
|
||||
offset: Int!
|
||||
limit: Int!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue