Search Graph Nodes
search_graph_nodesSearch for nodes by property values in a deployed graph project.
Supports exact match and contains search (prefix value with ~ for contains).
Examples: Exact: filters: {"name": "Alan Turing"} Contains: filters: {"name": "~turing"} (case-insensitive) Combined: entity_type: "person", filters: {"field": "~physics"}
Without entity_type, searches ALL node types.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default: 100, max: 1000) | |
| offset | No | Pagination offset (default: 0) | |
| filters | Yes | Property filters. Prefix value with ~ for contains search. | |
| 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) |