@neo4j/cypher-builder
Version:
A programmatic API for building Cypher queries for Neo4j
9 lines (8 loc) • 343 B
TypeScript
import type { Pattern } from "../..";
import { CypherASTNode } from "../../CypherASTNode";
import { Clause } from "../../clauses/Clause";
import type { CypherCompilable } from "../../types";
export declare abstract class Subquery extends CypherASTNode {
protected subquery: CypherCompilable;
constructor(subquery: Clause | Pattern);
}