For a library for building GraphQL in Go, the strongest matches are 99designs/gqlgen (This library is a comprehensive, schema-first GraphQL server framework), graphql-go/graphql (This library provides a comprehensive, reflection-based implementation for building) and neelance/graphql-go (This library provides the core infrastructure for building GraphQL). graph-gophers/graphql-go is also worth a look. Each is ranked by relevance to your query, popularity and recent activity.
Curamos repositorios de código abierto en GitHub que coinciden con “best go graphql libraries”. Los resultados están clasificados por relevancia según tu búsqueda; usa los filtros de abajo para acotar o refina con IA.
gqlgen is a schema-first Go library designed to build type-safe GraphQL servers. It functions as a code generation engine that transforms declarative GraphQL schema definitions into strongly-typed Go source code, ensuring strict alignment between the API contract and the underlying implementation. The framework distinguishes itself through its deep integration with the Go type system and its highly extensible build pipeline. By using schema-first development, it automates the creation of server boilerplate and resolver stubs, allowing developers to map schema fields directly to Go structs and
This library is a comprehensive, schema-first GraphQL server framework for Go that uses code generation to ensure type safety and high performance, directly addressing all the core requirements for building robust GraphQL APIs.
This project is a GraphQL implementation for Go, providing a complete suite for building GraphQL servers. It includes a schema engine for defining types, a query parser to convert strings into abstract syntax trees, and an execution engine that resolves fields against a defined schema to return structured data. The library distinguishes itself through reflection-based type mapping, allowing object definitions and arguments to be derived directly from native Go structs. It also supports the execution of real-time data streaming via GraphQL subscriptions and provides an extensible execution pip
This library provides a comprehensive, reflection-based implementation for building GraphQL servers in Go, offering the core execution and schema-definition capabilities required for the category.
graphql-go is a server library for implementing GraphQL servers in Go. It provides the core infrastructure for schema parsing, resolver mapping, and query execution. The library includes a subscription engine that enables real-time data streaming to clients using WebSocket transport. It also features an execution tracer for monitoring and profiling query performance through telemetry tools. The system manages resource consumption and stability through a query optimizer that enforces depth restrictions and controls resolver concurrency. It supports data fetching optimization via field-level p
This library provides the core infrastructure for building GraphQL servers in Go, including resolver support, query execution, and performance-focused features like concurrency limits and subscription handling.
graphql-go is a schema-first GraphQL library and server implementation for Go. It provides a query execution engine and schema parser that converts schema definition strings into executable structures and validates resolver signatures. The library also includes a streaming implementation for real-time GraphQL subscriptions using channels within resolvers. The project distinguishes itself through parallel resolver execution to reduce request latency and the use of buffer-pool memory management to lower garbage collection overhead. It enables the creation of cloneable schema instances from a sh
This library provides a schema-first approach to building GraphQL servers in Go with a focus on high-performance execution through concurrent resolvers and efficient memory management.