UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

11 lines (10 loc) 301 B
import { Mixin } from "./Mixin"; export declare abstract class WithDistinctAll extends Mixin { private projectionMode; distinct(): this; /** Explicitly project all values bound to a variable * @since Neo4j 2025.06 */ all(): this; protected projectionModeStr(): string; }