Combined overview query - gets issues, labels, milestones, projects in ONE call. Much faster than making separate calls!
(
issues_limit: int = 10,
include_projects: bool = True,
_context: dict = None,
**kwargs,
)
| 1523 | |
| 1524 | |
| 1525 | async def tool_github_overview( |
| 1526 | issues_limit: int = 10, |
| 1527 | include_projects: bool = True, |
| 1528 | _context: dict = None, |
| 1529 | **kwargs, |
| 1530 | ) -> dict: |
| 1531 | """ |
| 1532 | Combined overview query - gets issues, labels, milestones, projects in ONE call. |
| 1533 | Much faster than making separate calls! |
| 1534 | """ |
| 1535 | return await github_graphql.get_repo_overview(issues_limit=min(issues_limit, 50), include_projects=include_projects) |
| 1536 | |
| 1537 | |
| 1538 | # Singleton instance |
nothing calls this directly
no test coverage detected