graph_traverse
Trace multi-hop connections from a fact ID to see what links to it across the knowledge graph. Returns fact IDs, depths, relations, and paths for each connection.
Instructions
Knowledge Graph: Multi-hop traversal from a starting fact. Answers 'what is connected to X?' across the entity graph. Returns a list of {fact_id, depth, relation, path} dicts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fact_id | Yes | The Qdrant point ID to start traversal from | |
| relation | No | Only follow edges with this relation (e.g. 'manages', 'runs_on') | |
| max_depth | No | Maximum hops (default 3) | |
| target_type | No | Only return targets with this entity_type (e.g. 'device', 'service') |