@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
10 lines (9 loc) • 363 B
TypeScript
import { Clause } from "../clauses/Clause";
import type { CypherEnvironment } from "../Environment";
import type { CypherCompilable } from "../types";
/** For testing purposes only */
export declare class TestClause extends Clause {
private readonly children;
constructor(...children: CypherCompilable[]);
getCypher(env: CypherEnvironment): string;
}