find_paths
Enumerate actual paths between source and target in a graph, returning concrete routes ordered by shortest first. Use when reachability alone is insufficient and you need the specific path list.
Instructions
source→target 실제 경로 열거 (무방향, 최단 우선). path_to 의 후속.
필터 DSL 의 path_to 는 "도달 가능?"(bool)만 답한다 — 실제 경로는 여기서 준다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | ||
| target | Yes | ||
| max_paths | No | 반환할 경로 수 (상한 100). 도달 시 조기 종료 + truncated. | |
| max_length | No | 경로 최대 홉 (기본 5, 서버 상한 10 — [5-B]). | |
| edge_filter | No | 이 필터를 통과하는 엣지만 따라간다 ([6]). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||