Skip to main content

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

ParameterTypeDescription
patternPatternElChain[]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

ParameterType
visitorCypherVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept