A small module to build Cypher queries
npm i @thecodenebula/cypher-fluent-js
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());
TBD