@neo4j/graphql
Version:
A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations
7 lines • 407 B
TypeScript
import type Cypher from "@neo4j/cypher-builder";
import type { QueryASTContext } from "../ast/QueryASTContext";
/** Checks if provided context has the target field defined (which would make it a nested translation context) */
export declare function hasTarget(context: QueryASTContext): context is QueryASTContext<Cypher.Node> & {
target: Cypher.Node;
};
//# sourceMappingURL=context-has-target.d.ts.map