Full-Text Search Graph
fulltext_search_graphSearch across ALL string properties of ALL nodes in a deployed graph using free-text queries.
Unlike search_graph_nodes (which filters by specific property), this searches every text field at once. Perfect for finding knowledge when you don't know which property contains the answer.
Example: query "quantum" searches name, description, summary, notes, and all other string fields. Returns nodes with _match_fields showing which properties matched.
Optionally filter by entity_type to narrow results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default: 50, max: 500) | |
| query | Yes | Search text (case-insensitive, min 2 chars) | |
| offset | No | Pagination offset (default: 0) | |
| project_id | Yes | Project ID (UUID) | |
| entity_type | No | Entity key to filter by (optional — omit to search all types) | |
| environment | No | Environment: staging or production (default: staging) |