Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qwiery/qwiery-dal

Generic and extensible graph data access layer.
https://github.com/qwiery/qwiery-dal

graphdatabase

Last synced: about 2 months ago
JSON representation

Generic and extensible graph data access layer.

Awesome Lists containing this project

README

        

# Qwiery Data Access Layer

Generic and extensible graph data access layer.

## Installation

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

## Usage

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