0.6.0-main • Published 5 years ago

@thecodenebula/cypher-fluent-js v0.6.0-main

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Cypher Fluent JS Tests

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