Crates.io | filesystem-trustfall-adapter |
lib.rs | filesystem-trustfall-adapter |
version | 0.1.0 |
source | src |
created_at | 2024-04-15 12:50:39.787616 |
updated_at | 2024-04-15 12:50:39.787616 |
description | Filesystem Trustfall adapter |
homepage | https://github.com/ZimboPro/trustfall-adapters.git |
repository | https://github.com/ZimboPro/trustfall-adapters.git |
max_upload_size | |
id | 1209192 |
size | 13,471 |
A Filesystem Trustfall adapter.
NOTE: This adapter is not maintained by the Trustfall maintainers.
type RootSchemaQuery {
Path(path: String!): Path!
}
interface Path {
path: String!
}
type Folder implements Path {
path: String!
children: [Path!]
}
interface File implements Path {
path: String!
size: Int!
extension: String!
"""
SHA256 hash of the file
"""
Hash: String!
}