get_data_flow
Trace the complete data flow from a component through stores, services, and adapters to API endpoints, including child components. Returns all endpoints hit by the rendered route.
Instructions
Trace the full data path from a component through composables/stores → services → adapters → API endpoints, INCLUDING data fetched by child components. Returns per-chain detail (each tagged with the via render path that reached it) plus allEndpoints — the union of every endpoint the rendered route hits. Store-mediated flows (Pinia/Zustand) are traced too. If the name matches multiple items, returns ambiguous with candidates — re-call with file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | Optional path substring to disambiguate when the name matches multiple files | |
| name | Yes | Component or composable name (e.g., "ProjectModal", "useProjectModal") | |
| depth | No | How deep into the child component tree to trace (default 3). 0 = the target's own calls only. |