Shows what blocks an issue and what it blocks.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill query-dependencies-joeczar-code-graph-mcp-2 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Query Dependencies Joeczar Code Graph Mcp 2?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-query-dependencies-joeczar-code-graph-mcp-2)More formats (shields.io, HTML) on the badges page.
---
name: query-dependencies
description: Shows what blocks an issue and what it blocks.
---
# Query Issue Dependencies
Shows what blocks an issue and what it blocks.
## Usage
When an agent needs to query dependencies:
```bash
gh api graphql -f query='
query {
repository(owner: "joeczar", name: "code-graph-mcp") {
issue(number: <issue-number>) {
number
title
state
blockedBy(first: 20) {
nodes { number title state }
}
blocking(first: 20) {
nodes { number title state }
}
}
}
}' --jq '.data.repository.issue'
```
## Example
Query dependencies for issue #10:
```bash
gh api graphql -f query='
query {
repository(owner: "joeczar", name: "code-graph-mcp") {
issue(number: 10) {
number
title
state
blockedBy(first: 20) {
nodes { number title state }
}
blocking(first: 20) {
nodes { number title state }
}
}
}
}' --jq '.data.repository.issue'
```
## Output Example
```json
{
"number": 10,
"title": "parse_file tool",
"state": "OPEN",
"blockedBy": {
"nodes": [
{"number": 12, "title": "AST walker base class", "state": "OPEN"},
{"number": 13, "title": "TypeScript entity extraction", "state": "OPEN"}
]
},
"blocking": {
"nodes": [
{"number": 11, "title": "parse_directory tool", "state": "OPEN"}
]
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!