@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
13 lines (12 loc) • 454 B
TypeScript
import type { PathVariable, Pattern, QuantifiedPath } from "..";
import { CypherASTNode } from "../CypherASTNode";
import type { CypherEnvironment } from "../Environment";
/**
* @group Patterns
*/
export declare class PathAssign<T extends Pattern | QuantifiedPath> extends CypherASTNode {
private readonly variable;
private readonly pattern;
constructor(pattern: T, variable: PathVariable);
getCypher(env: CypherEnvironment): string;
}