Retrieval Functions
The purpose of these functions are primarily to retrieve documents within the given (or default) directory.
.find(id)
let info = db.find("1234");
console.log(info);.findMore([ids]);
db.findMore(["1234", "2", "5555"]);.get(id);
db.get("1234", (file) => {
console.log(file);
});.collect();
Last updated