| name | go-graphql |
| description | Use when building or reviewing a GraphQL API in Go. Covers library choice (gqlgen vs graph-gophers), schema design (nullability, pagination, mutation envelopes), thin resolver pattern, per-request DataLoaders for N+1, authentication via context plus schema directives, error presenters, subscription lifecycle (context cancellation), and production hardening (complexity limits, introspection gating). Apply when working with github.com/99designs/gqlgen or github.com/graph-gophers/graphql-go. |
| user-invocable | false |
| license | MIT |
| compatibility | Designed for Claude Code or similar AI coding agents. Requires Go 1.21+. gqlgen v0.17+ or graph-gophers/graphql-go v1.5+. |
| metadata | {"author":"muratmirgun","version":"0.1.0","openclaw":{"emoji":"๐","homepage":"https://github.com/muratmirgun/gophers","requires":{"bins":["go"]},"install":[]}} |
| allowed-tools | Read Edit Write Glob Grep Bash(go:*) Bash(golangci-lint:*) |
Go GraphQL
Both production-grade Go GraphQL libraries are schema-first: write SDL (.graphql), bind Go resolvers. Pick the library, write the schema deliberately, and treat DataLoaders + complexity limits as non-optional.
Core Rules
- Schema is the contract. Design nullability and pagination once; clients depend on it forever. A change from nullable to non-null is a breaking change.
- Resolvers are thin. Translate GraphQL input โ domain call โ GraphQL output. No SQL, no business logic.
- DataLoaders are per-request. Construct in HTTP middleware, stash in
context. A package-level DataLoader is a cross-tenant data leak.
- Authenticate in middleware, authorize in the schema. HTTP middleware extracts identity; schema directives (or resolver checks) enforce per-field rules.
- Subscriptions respect context. Every subscription goroutine selects on
ctx.Done() and defer close(ch). Otherwise a disconnected client leaks a goroutine forever.
- Production limits are non-optional. Set complexity caps; gate introspection by environment; never expose raw internal errors.
Library Decision
| Library | Approach | Type safety | Build step | Pick when |
|---|
github.com/99designs/gqlgen | Codegen | Compile-time | go generate | Large schemas, Federation, strict types |
github.com/graph-gophers/graphql-go | Reflection | Parse-time | None | Small/medium schemas, simple pipeline |
github.com/graphql-go/graphql | Code-first | Runtime | None | Avoid โ verbose, no SDL |
Read references/gqlgen.md for the codegen workflow, gqlgen.yml, DataLoaders, and Federation.
Read references/graph-gophers.md for the reflection model, type mapping, and tracing.
Schema Design
type User {
id: ID!
email: String!
bio: String
posts(first: Int = 10, after: String): PostConnection!
}
type CreateUserPayload {
user: User
errors: [UserError!]!
}
type PostConnection {
edges: [PostEdge!]!
pageInfo: PageInfo!
}
Nullability rule. A field is ! only when the server can always return a value. A resolver error on a non-null field nulls the parent object โ cascade failures. Nullable fields null only themselves.
Pagination. Cursor connections beat offset pagination on large or write-heavy datasets โ cursors are stable under concurrent inserts.
Mutation envelopes. Wrap mutation results so business-level errors (validation, conflict) become first-class data instead of polluting the top-level errors array.
Thin Resolvers
func (r *mutationResolver) CreateUser(ctx context.Context, in CreateUserInput) (*CreateUserPayload, error) {
user, err := r.users.Create(ctx, in.Email, in.Name)
if err != nil {
return nil, presentError(err)
}
return &CreateUserPayload{User: toGQLUser(user)}, nil
}
func (r *queryResolver) User(ctx context.Context, id string) (*User, error) {
row := r.db.QueryRowContext(ctx, "SELECT * FROM users WHERE id = $1", id)
}
Use per-type resolver structs (userResolver, postResolver) instead of one monolithic resolver. It scales with the schema.
N+1 Prevention with DataLoaders
A naive User.posts resolver fires one SQL query per user โ O(n) round-trips. DataLoaders coalesce per-field loads within a single tick into one batched query.
func DataLoaderMiddleware(db *sql.DB, next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
loaders := &Loaders{
PostsByUser: newPostsByUserLoader(r.Context(), db),
}
ctx := context.WithValue(r.Context(), loadersKey{}, loaders)
next.ServeHTTP(w, r.WithContext(ctx))
})
}
var globalLoader = newPostsByUserLoader(context.Background(), db)
Package-level DataLoaders silently serve user A's data to user B's request as long as the cached key matches. This is the most dangerous bug in Go GraphQL services.
Authn vs Authz
Authenticate in HTTP middleware (extract identity, stash in ctx); authorize per-field via schema directives (@hasRole(role: ADMIN)) in gqlgen, or resolver-level checks in graph-gophers. Authorization policy belongs in the schema, not scattered across resolvers. See references/gqlgen.md.
Error Handling
Never surface raw error values โ they leak SQL fragments and internals. Install an ErrorPresenter (gqlgen) or implement ResolverError (graph-gophers) that returns sanitized messages. Attach a stable code in extensions (NOT_FOUND, FORBIDDEN) for client handling. Use graphql.AddError(ctx, err) for non-fatal field errors with partial data.
Subscriptions
Every subscription goroutine must defer close(ch) and select on ctx.Done() in both the receive and send branches:
go func() {
defer close(ch)
for {
select {
case <-ctx.Done(): return
case msg := <-sub:
select { case ch <- msg: case <-ctx.Done(): return }
}
}
}()
Without this, every disconnected client leaks a goroutine.
Production Hardening
extension.FixedComplexityLimit(200) (gqlgen) or graphql.MaxDepth(10) + MaxParallelism(10) (graph-gophers)
- Gate introspection behind an env check
- Consider persisted queries (gqlgen APQ) so production only accepts pre-approved hashed queries
Anti-Patterns
| Anti-pattern | Why it hurts | Do this instead |
|---|
| Package-level DataLoader | Cross-tenant data leakage, stale cache | Construct per-request in middleware |
| SQL in resolver | Resolver becomes data layer; no batching | Delegate to service; load via DataLoader |
| Non-null field that can fail | Cascade-nulls the parent | Make it nullable; or guarantee in resolver |
Editing models_gen.go | Wiped on next codegen | Use autobind / models.<T>.model in gqlgen.yml |
| Introspection in production | Exposes full schema surface | Gate by env |
| Subscription goroutine leak | Each disconnect leaks a goroutine | defer close(ch) + select ctx.Done() |
| No complexity cap | Single deep query = CPU/memory DoS | FixedComplexityLimit(N) or persisted queries |
| Raw internal error to client | Leaks DB messages, stack traces | ErrorPresenter returning sanitized message |
int field for Int! in graph-gophers | Library expects int32 | Use int32 (or float64 for Float) |
Verification Checklist
References