A VS Code extension that discovers and navigates GraphQL schemas in Django projects. Supports Graphene, Strawberry, Ariadne, and .graphql schema files.
Features
Schema Tree Explorer
Browse your entire GraphQL schema from a dedicated Activity Bar panel.
Auto-detects Django projects with GraphQL frameworks
Displays Queries, Mutations, Subscriptions, and Types in a collapsible tree
Click to preview GraphQL SDL, double-click to jump to Python source
Real-time search with regex, case-sensitive, and whole-word toggle
Sort alphabetically (A-Z / Z-A)
Frontend-Backend Mapping (CodeLens)
Automatically maps frontend gql queries to backend Python classes.
// CodeLens appears above each field:
// → StockQuery.stock [Query]
gql`
query {
stock(companyId: $companyId) {
id
name
}
}
`;