UNPKG

@neo4j/graphql

Version:

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

14 lines 789 B
import Cypher from "@neo4j/cypher-builder"; import type { AttributeAdapter } from "../../../../../schema-model/attribute/model-adapters/AttributeAdapter"; import { type QueryASTContext } from "../../QueryASTContext"; import { ParamInputField } from "../ParamInputField"; export declare class PushInputField extends ParamInputField { constructor({ attribute, attachedTo, inputValue, }: { attribute: AttributeAdapter; attachedTo: "node" | "relationship"; inputValue: unknown; }); getPredicate(queryASTContext: QueryASTContext<Cypher.Node>): Cypher.Predicate | undefined; protected getRightExpression(queryASTContext: QueryASTContext<Cypher.Node>): Exclude<Cypher.Expr, Cypher.Map | Cypher.MapProjection>; } //# sourceMappingURL=PushInputField.d.ts.map