UNPKG

@neo4j/graphql

Version:

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

16 lines 450 B
import type { Annotation } from "./Annotation"; export type VectorField = { indexName: string; embeddingProperty: string; queryName: string; provider?: string; callback?: string; }; export declare class VectorAnnotation implements Annotation { readonly name = "vector"; readonly indexes: VectorField[]; constructor({ indexes }: { indexes: VectorField[]; }); } //# sourceMappingURL=VectorAnnotation.d.ts.map