Class: SetOp
Defined in: lang-cypher/src/ast/query.ts:16
Set operation node linking this query to a subsequent one via UNION or UNION ALL.
Implements
Constructors
Constructor
new SetOp(
type,next):SetOp
Defined in: lang-cypher/src/ast/query.ts:17
Parameters
| Parameter | Type | Description |
|---|---|---|
type | SetOpType | The set operation type. |
next | Query | The next Query in the chain. |
Returns
SetOp
Properties
next
next:
Query
Defined in: lang-cypher/src/ast/query.ts:21
The next Query in the chain.
type
type:
SetOpType
Defined in: lang-cypher/src/ast/query.ts:19
The set operation type.
Methods
accept()
accept<
Ret,Arg>(visitor,arg?):Ret
Defined in: lang-cypher/src/ast/query.ts:24
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