4.0.5 • Published 5 months ago

@orbifold/dal v4.0.5

Weekly downloads
-
License
-
Repository
github
Last release
5 months ago

Qwiery Data Access Layer

Generic and extensible graph data access layer.

Installation

npm i lodash moment @orbifold/utils @orbifold/dal @orbifold/projections @orbifold/graphs

Usage

import { Qwiery } from "@orbifold/dal";
async function main() {
    const qwiery = new Qwiery();
    await qwiery.randomGraph();
    console.log(await qwiery.nodeCount());
}
main();