UNPKG

@neo4j/graphql

Version:

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

15 lines 771 B
import Cypher from "@neo4j/cypher-builder"; import type { Node, Relationship } from "../../../classes"; import type { ConnectionWhereArg, PredicateReturn } from "../../../types"; import type { Neo4jGraphQLTranslationContext } from "../../../types/neo4j-graphql-translation-context"; export declare function createConnectionWherePropertyOperation({ context, whereInput, edgeRef, targetNode, node, edge, useExistExpr, checkParameterExistence, }: { whereInput: ConnectionWhereArg; context: Neo4jGraphQLTranslationContext; node: Node; edge: Relationship; edgeRef: Cypher.Variable; targetNode: Cypher.Node; useExistExpr?: boolean; checkParameterExistence?: boolean; }): PredicateReturn; //# sourceMappingURL=create-connection-operation.d.ts.map