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
| Parameter | Type | Description |
|---|---|---|
items | SetItem[] | 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
| Parameter | Type |
|---|---|
visitor | CypherVisitor<Ret, Arg> |
arg? | Arg |
Returns
Ret