@neo4j/cypher-builder
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -23,2 +23,3 @@ "use strict"; | ||
const Environment_1 = require("../Environment"); | ||
const escape_1 = require("../utils/escape"); | ||
const pad_block_1 = require("../utils/pad-block"); | ||
@@ -36,3 +37,4 @@ const pad_left_1 = require("../utils/pad-left"); | ||
const paramValues = Object.entries(parameters).reduce((acc, [key, param]) => { | ||
acc[key] = param.getCypher(env); | ||
const escapedKey = (0, escape_1.escapeProperty)(key); | ||
acc[escapedKey] = param.getCypher(env); | ||
return acc; | ||
@@ -39,0 +41,0 @@ }, {}); |
{ | ||
"name": "@neo4j/cypher-builder", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "A programmatic API for building Cypher queries for Neo4j", | ||
@@ -5,0 +5,0 @@ "exports": "./dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
284769
6993