Skip to main content

Class: SetClause

Defined in: lang-cypher/src/ast/query.ts:141

A SET clause that assigns properties or labels to nodes and relationships.

Implements

Constructors

Constructor

new SetClause(items): SetClause

Defined in: lang-cypher/src/ast/query.ts:142

Parameters

ParameterTypeDescription
itemsSetItem[]The individual set assignments.

Returns

SetClause

Properties

items

items: SetItem[]

Defined in: lang-cypher/src/ast/query.ts:144

The individual set assignments.

Methods

accept()

accept<Ret, Arg>(visitor, arg?): Ret

Defined in: lang-cypher/src/ast/query.ts:147

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