plaixt/query
Marcel Müller a6406ebd5a Make filesystem types handle their path impl
Signed-off-by: Marcel Müller <neikos@neikos.email>
2025-02-09 20:16:07 +01:00

27 lines
620 B
Text

{
Records {
... on p_file_test {
_at @output
_kind @output
path {
... on Directory {
Children @recurse(depth: 10) {
path @output
}
}
}
}
}
# fs__Path(path: "./crates/plaixt/") {
# ... on fs__Folder {
# directory: path @output
# children @fold {
# ... on fs__File {
# file: path @output
# size @output
# }
# }
# }
# }
}