Skip to main content

Enumeration: Quantifier

Defined in: lang-cypher/src/ast/expression.ts:50

Quantifier keyword for a QuantifiedExpr.

Enumeration Members

ALL

ALL: "all"

Defined in: lang-cypher/src/ast/expression.ts:54

True when every element satisfies the predicate.


ANY

ANY: "any"

Defined in: lang-cypher/src/ast/expression.ts:52

True when at least one element satisfies the predicate.


NONE

NONE: "none"

Defined in: lang-cypher/src/ast/expression.ts:58

True when no element satisfies the predicate.


SINGLE

SINGLE: "single"

Defined in: lang-cypher/src/ast/expression.ts:56

True when exactly one element satisfies the predicate.