@rep2recall/r2r-sqlite
Version:
R2r format engine for Rep2Recall
14 lines (12 loc) • 590 B
text/typescript
import R2r from "../src";
(async () => {
const r2r = await new R2r("test.r2r").build();
console.log(await r2r.card.find({}, undefined, "LIMIT 10"));
console.log(await r2r.note.find({}, undefined, "LIMIT 10"));
console.log(await r2r.template.find({}, undefined, "LIMIT 10"));
console.log(await r2r.source.find({}, undefined, "LIMIT 10"));
console.log(await r2r.deck.find({}, undefined, "LIMIT 10"));
console.log(await r2r.media.find({}, undefined, "LIMIT 10"));
console.log(await r2r.parseCond("", {limit: 10, fields: "*"}));
await r2r.close();
})().catch(console.error);