UNPKG

atlas-mcp-server

Version:

ATLAS (Adaptive Task & Logic Automation System): An MCP server enabling LLM agents to manage projects, tasks, and knowledge via a Neo4j-backed, three-tier architecture. Facilitates complex workflow automation and project management through LLM Agents.

14 lines (13 loc) 710 B
/** * @fileoverview Implements the full-text search logic for Neo4j entities. * @module src/services/neo4j/searchService/fullTextSearchLogic */ import { PaginatedResult, SearchOptions } from "../types.js"; import { SearchResultItem } from "./searchTypes.js"; /** * Perform a full-text search across multiple entity types. * @param searchValue The string to search for. * @param options Search options, excluding those not relevant to full-text search. * @returns Paginated search results. */ export declare function _fullTextSearch(searchValue: string, options?: Omit<SearchOptions, "value" | "fuzzy" | "caseInsensitive" | "property" | "assignedToUserId">): Promise<PaginatedResult<SearchResultItem>>;