search_cypher_query
Execute Cypher queries with vector and fulltext search capabilities to retrieve and analyze graph data for GraphRAG applications.
Instructions
Execute a Cypher query that uses vector and/or fulltext search indexes.
This powerful tool allows you to:
Use vector search ($vector_embedding) and/or fulltext search ($fulltext_text) in Cypher
Post-filter large result sets (fetch 100-1000, filter with WHERE)
Combine search with graph traversal
Aggregate over search results
Example:
Placeholders:
$vector_embedding: Replaced with embedding vector$fulltext_text: Replaced with text string for fulltext
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cypher_query | Yes | Cypher query using $vector_embedding and/or $fulltext_text placeholders. | |
| vector_query | No | Text query to embed for vector search. Use $vector_embedding placeholder in Cypher. | |
| fulltext_query | No | Text query for fulltext search. Use $fulltext_text placeholder in Cypher. | |
| params | No | Additional parameters for the Cypher query. |