A barebone implementation of hierarchical object structures using EdgeDB.
Very rudimentary and only provisionally tested. Has no indexes yet, doesn't use links, and probably other inefficiencies.
Use at your own peril.
| import fs = require("fs-extra"); | |
| import glob = require("glob"); | |
| import readline = require("readline"); | |
| import path = require("path"); | |
| export type Header = { key: string, value: string }; | |
| export type Order = { [header: string]: "ASC"|"DESC" }; | |
| export interface File { | |
| file: string; |