Skip to main content

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

ParameterTypeDescription
typeSetOpTypeThe set operation type.
nextQueryThe 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

ParameterType
visitorCypherVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept