UNPKG

@neo4j/graphql

Version:

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

14 lines 407 B
import type { Annotation } from "./Annotation"; export type FulltextField = { indexName: string; queryName: string; fields: string[]; }; export declare class FulltextAnnotation implements Annotation { readonly name = "fulltext"; readonly indexes: FulltextField[]; constructor({ indexes }: { indexes: FulltextField[]; }); } //# sourceMappingURL=FulltextAnnotation.d.ts.map