Skip to content

graphql capability

graphql adds a gqlgen-powered GraphQL API to your Go service, including schema, resolvers, and a development playground.

  • gqlgen configuration
  • Schema definition
  • Resolver scaffolding
  • Playground for development

Use graphql for client-facing APIs where clients need flexible querying — common in mobile apps and complex frontends where over-fetching from REST would be costly.

Suggests: auth-jwt, observability, health, docker

Terminal window
verikt new my-service --language go --cap graphql
# or add to an existing service:
verikt add graphql

auth-jwt

JWT authentication for securing GraphQL resolvers.

observability

Distributed tracing and metrics for production debugging.

docker

Local development environment with Docker Compose.