Skip to main content

gqlgen

Recommendation
Updated
Moved
USE
2022-05-02

What is it

gqlgen is a Go framework developed by 99designs for implementing GraphQL servers in Go. It promotes API first design by generating as much boilerplate code as possible from the GraphQL schema.

When to use it

Use it when implementing GraphQL servers in Go.

caution

Before developing a new GraphQL server, please make sure that the scope of the server is focused toward a specific frontend application. In line with our principle of team-centralized ownership, we want to avoid building cross-team dependencies. Dependencies on a GraphQL server can easily creep into more applications...

How to learn it