Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/qwiery/qwiery-dal
- Owner: Qwiery
- License: mit
- Created: 2023-12-19T14:24:28.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-22T05:26:24.000Z (about 1 year ago)
- Last Synced: 2024-04-26T19:03:50.651Z (8 months ago)
- Topics: graphdatabase
- Language: TypeScript
- Homepage: https://qwiery.com
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```