sedk-neo4j
Version:
Cypher builder and validator for Neo4j
14 lines • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Label = void 0;
const util_1 = require("./util");
class Label {
constructor(name) {
this.name = name;
}
getStmt() {
return `\`${(0, util_1.escapeBackTick)(this.name)}\``;
}
}
exports.Label = Label;
//# sourceMappingURL=Label.js.map