1 个不稳定版本
0.1.0 | 2024 年 4 月 15 日 |
---|
#657 在 文件系统
14KB
326 行
文件系统 Trustfall 适配器
一个文件系统 Trustfall 适配器。
注意:此适配器不由 Trustfall 维护者维护。
规范
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!
}
待办事项
- 添加示例
- 改进文档
- 添加测试
- 示例查询
依赖
~13MB
~298K SLoC