import Cypher from "@neo4j/cypher-builder"; import type { FulltextField } from "../../../../schema-model/annotation/FulltextAnnotation"; import type { ConcreteEntityAdapter } from "../../../../schema-model/entity/model-adapters/ConcreteEntityAdapter"; import type { RelationshipAdapter } from "../../../../schema-model/relationship/model-adapters/RelationshipAdapter"; import type { QueryASTContext } from "../QueryASTContext"; import type { QueryASTNode } from "../QueryASTNode"; import type { ScoreField } from "../fields/ScoreField"; import type { EntitySelection } from "../selection/EntitySelection"; import { ConnectionReadOperation } from "./ConnectionReadOperation"; export type FulltextOptions = { index: FulltextField; phrase: string; score: Cypher.Variable; }; export declare class FulltextOperation extends ConnectionReadOperation { private scoreField; constructor({ target, relationship, scoreField, selection, }: { target: ConcreteEntityAdapter; relationship?: RelationshipAdapter; scoreField: ScoreField | undefined; selection: EntitySelection; }); getChildren(): QueryASTNode[]; protected shouldProjectEdges(): boolean; protected createProjectionMapForEdge(context: QueryASTContext): Cypher.Map; protected getUnwindClause(context: QueryASTContext, edgeVar: Cypher.Variable, edgesVar: Cypher.Variable): Cypher.With; protected getWithCollectEdgesAndTotalCount(nestedContext: QueryASTContext, edgesVar: Cypher.Variable, totalCount: Cypher.Variable): Cypher.With; private hasScoreSort; } //# sourceMappingURL=FulltextOperation.d.ts.map