UNPKG
cypher-engine
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Cypher Engine to generate Cypher queries
github.com/jdksloan/CypherEngine
cypher-engine
/
src
/
models
/
Cypher.ts
10 lines
(8 loc)
•
198 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
Cypher
{
public
cypher
:
string
;
public
seperator
:
string
;
constructor
(
cypher
:
string
,
seperator
:
string
=
'\n'
) {
this
.
cypher
= cypher;
this
.
seperator
= seperator; } }