UNPKG

@neo4j/graphql

Version:

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

13 lines 442 B
import type { ConcreteEntity } from "../entity/ConcreteEntity"; import type { Annotation } from "./Annotation"; export declare class CypherAnnotation implements Annotation { readonly name = "cypher"; statement: string; columnName: string; targetEntity?: ConcreteEntity; constructor({ statement, columnName }: { statement: string; columnName: string; }); } //# sourceMappingURL=CypherAnnotation.d.ts.map