Add dependency and dependent counts to bd list JSON output (#198)
When using `bd list --json`, each issue now includes: - `dependency_count`: Number of issues this issue depends on - `dependent_count`: Number of issues that depend on this issue This provides quick access to dependency relationship counts without needing to fetch full dependency lists or run multiple bd show commands. Performance: - Uses single bulk query (GetDependencyCounts) instead of N individual queries - Overhead: ~26% for 500 issues (24ms vs 19ms baseline) - Avoids N+1 query problem that would have caused 2.2x slowdown Implementation: - Added GetDependencyCounts() to Storage interface for bulk counting - Efficient SQLite query using UNION ALL + GROUP BY - Memory storage implementation for testing - Moved IssueWithCounts to types package to avoid duplication - Both RPC and direct modes use optimized bulk query Tests: - Added comprehensive tests for GetDependencyCounts - Tests cover: normal operation, empty list, nonexistent IDs - All existing tests continue to pass Backwards compatible: JSON structure is additive, all original fields preserved. Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
committed by
GitHub
parent
21ab565819
commit
c65cfa1ebd
@@ -31,6 +31,8 @@ class Issue(BaseModel):
|
||||
labels: list[str] = Field(default_factory=list)
|
||||
dependencies: list["Issue"] = Field(default_factory=list)
|
||||
dependents: list["Issue"] = Field(default_factory=list)
|
||||
dependency_count: int = 0
|
||||
dependent_count: int = 0
|
||||
|
||||
@field_validator("priority")
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user