@thecodenebula/cypher-fluent-js
TypeScript icon, indicating that this package has built-in type declarations

0.6.0-main • Public • Published

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

Package Sidebar

Install

npm i @thecodenebula/cypher-fluent-js

Weekly Downloads

1

Version

0.6.0-main

License

MIT

Unpacked Size

79.9 kB

Total Files

65

Last publish

Collaborators

  • grillorafael