UNPKG

@neo4j/graphql

Version:

A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations

10 lines 443 B
import type Cypher from "@neo4j/cypher-builder"; import type { QueryASTContext } from "./QueryASTContext"; export declare abstract class QueryASTNode { abstract getChildren(): QueryASTNode[]; /** Prints the name of the Node */ print(): string; getSubqueries(_context: QueryASTContext): Cypher.Clause[]; getSelection(_context: QueryASTContext): Array<Cypher.Match | Cypher.With>; } //# sourceMappingURL=QueryASTNode.d.ts.map