UNPKG

cypher-engine

Version:

Cypher Engine to generate Cypher queries

10 lines (8 loc) 198 B
export class Cypher { public cypher: string; public seperator: string; constructor(cypher: string, seperator: string = '\n') { this.cypher = cypher; this.seperator = seperator; } }