UNPKG

@neo4j/graphql

Version:

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

8 lines 482 B
import type Cypher from "@neo4j/cypher-builder"; import { Field } from "../Field"; export declare abstract class AggregationField extends Field { abstract getProjectionField(_variable: Cypher.Variable): Record<string, Cypher.Expr>; abstract getAggregationExpr(variable: Cypher.Variable | Cypher.Property): Cypher.Expr; abstract getAggregationProjection(target: Cypher.Variable, returnVar: Cypher.Variable): Cypher.Clause; } //# sourceMappingURL=AggregationField.d.ts.map