Find connection path
find_pathsHow two objects in the user's graph are connected: the shortest chain of real relationships between them, up to 3 hops, e.g. person -[worked_with]- person -[works_at]- company. Only deliberate relationships count — bulk-import and system-inferred edges are excluded, so a path is evidence. Returns the path as a list of hops, and an EMPTY list when there is no connection: report that honestly, never invent a path.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to_object_id | Yes | Where the path ends (exact object_id). | |
| from_object_id | Yes | Where the path starts (exact object_id). |