UNPKG

@neo4j/graphql

Version:

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

19 lines 711 B
import type { GraphElement } from "../../classes"; interface MathDescriptor { dbName: string; graphQLType: string; fieldName: string; operationName: string; operationSymbol: string; value: number; } interface MathMatch { hasMatched: boolean; operatorName: string; propertyName: string; } export declare function matchMathField(graphQLFieldName: string): MathMatch; export declare function mathDescriptorBuilder(value: number, entity: GraphElement, fieldMatch: MathMatch): MathDescriptor; export declare function buildMathStatements(mathDescriptor: MathDescriptor, scope: string, withVars: string[], param: string): Array<string>; export {}; //# sourceMappingURL=math.d.ts.map