UNPKG

@neo4j/cypher-builder

Version:

A programmatic API for building Cypher queries for Neo4j

13 lines (12 loc) 521 B
import { CypherASTNode } from "../../CypherASTNode"; import type { CypherEnvironment } from "../../Environment"; import type { Variable } from "../../references/Variable"; /** Represents a WITH statement to import variables into a CALL subquery */ export declare class ImportWith extends CypherASTNode { private readonly params; private hasStar; constructor(parent: CypherASTNode, params: Array<"*" | Variable>); /** @internal */ getCypher(env: CypherEnvironment): string; private filterParams; }