0.0.1 • Published 4 years ago

h-cql v0.0.1

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
4 years ago

h-cql

Helper to inspect cypher queries

Usage

const hCql = require('h-cql')

let cypher = 'MATCH (sl:SomeLabel) WHERE sl.name = $name RETURN sl' let params = { name: "some name" } let cql = { cypher, params } hCql.inspect(cql)

The inspect method will change the parameters and will copy the result to the clipboard // result: MATCH (sl:SomeLabel) WHERE sl.name = "some name" RETURN sl

0.0.1

4 years ago