0.6.0-main • Published 5 years ago
@thecodenebula/cypher-fluent-js v0.6.0-main
Cypher Fluent JS 
A small module to build Cypher queries
Installing
npm i @thecodenebula/cypher-fluent-js
Examples
import {
match,
node,
} from '@thecodenebula/cypher-fluent-js';
const query = match(node('actor', 'Actor'), node('person', 'Person'))
.return('actor', 'person')
.skip(10)
.limit(100)
.orderBy('actor.name asc');
console.log(query.build());
Documentation
TBD
0.7.0-main
5 years ago
0.6.0-main
5 years ago