| Crates.io | filesystem-trustfall-adapter |
| lib.rs | filesystem-trustfall-adapter |
| version | 0.1.1 |
| created_at | 2024-04-15 12:50:39.787616+00 |
| updated_at | 2025-02-08 13:56:28.807956+00 |
| 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 | 29,234 |
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!
}