graph_traverse
Traverse the knowledge graph from a starting fact to reveal connected entities across multiple hops. Filter by relation or target type and get paths with depth and relation details.
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') |