import { GraphQLResolveInfo } from "graphql"; import { BaseField } from "../../types"; export default function cypherResolver({ field, statement, type, }: { field: BaseField; statement: string; type: "Query" | "Mutation"; }): { type: string; resolve: (_root: any, args: any, _context: unknown, info: GraphQLResolveInfo) => Promise; args: {}; }; //# sourceMappingURL=cypher.d.ts.map