Class: CreateClause
Defined in: lang-cypher/src/ast/query.ts:90
A CREATE clause that creates nodes and relationships.
Implements
Constructors
Constructor
new CreateClause(
pattern):CreateClause
Defined in: lang-cypher/src/ast/query.ts:91
Parameters
| Parameter | Type | Description |
|---|---|---|
pattern | PatternElChain[] | Path patterns describing the graph elements to create. |
Returns
CreateClause
Properties
pattern
pattern:
PatternElChain[]
Defined in: lang-cypher/src/ast/query.ts:93
Path patterns describing the graph elements to create.
Methods
accept()
accept<
Ret,Arg>(visitor,arg?):Ret
Defined in: lang-cypher/src/ast/query.ts:96
Dispatches this node to the matching method on visitor.
Type Parameters
| Type Parameter |
|---|
Ret |
Arg |
Parameters
| Parameter | Type |
|---|---|
visitor | CypherVisitor<Ret, Arg> |
arg? | Arg |
Returns
Ret