find_superclasses
Find all superclasses of a given class by traversing its extends chain up to a configurable depth, returning each class with its depth and repository name.
Instructions
Walk the EXTENDS chain upward from the given class (BFS, max depth 10).
Returns:
List of dicts with keys ``class_fqn``, ``depth``, ``repo_name``.
Depth 1 = direct parent. Starting class not included.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| class_fqn | Yes | ||
| max_depth | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |