tstor/ui/lib/api/fs_entry.graphql
2024-04-24 20:36:33 +03:00

45 lines
No EOL
587 B
GraphQL

fragment File on File {
name
size
}
fragment TorrentDir on TorrentFS {
name
torrent {
name
infohash
bytesCompleted
torrentFilePath
bytesMissing
}
}
fragment ArchiveDir on ArchiveFS {
name
size
}
fragment DirEntry on FsEntry {
name
...TorrentDir
...ArchiveDir
...File
}
query ListDir($path: String!) {
fsEntry(path: $path) {
name
... on Dir {
entries {
...DirEntry
}
}
...TorrentDir
...ArchiveDir
}
}