awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
neelance avatar

neelance/graphql-go

0
View on GitHub↗
4,756 stars·493 forks·Go·BSD-2-Clause·30 views

Graphql Go

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 prefetching to reduce repetitive database requests and utilizes a panic-to-error transformation mechanism to maintain server stability.

Features

  • GraphQL Servers - Provides a complete implementation of a GraphQL server for handling flexible data queries and mutations in Go.
  • Data Fetching Optimizations - Analyzes child fields and arguments to prefetch data and eliminate repetitive database requests.
  • GraphQL Subscriptions - Implements a subscription engine for pushing real-time data updates to clients via GraphQL subscriptions.
  • WebSocket Subscriptions - Maintains persistent WebSocket connections to push real-time updates via a subscription-based event model.
  • GraphQL Subscriptions over WebSocket - Enables real-time data delivery to clients using GraphQL subscriptions over WebSocket transport.
  • Query Depth Restrictions - Enforces maximum nesting depth limits on incoming queries to prevent resource exhaustion and DoS attacks.
  • Recursive Schema Execution - Processes nested GraphQL requests by traversing the schema tree and calling resolvers for each requested field.
  • GraphQL API Implementations - Provides a flexible data layer implemented in Go to handle complex GraphQL queries and structured retrieval.
  • GraphQL Execution Engines - Implements the core execution engine for parsing and resolving GraphQL operations against a defined schema.
  • Real-Time Data Streaming - Pushes live server-side updates to connected clients using GraphQL subscriptions and WebSockets.
  • GraphQL Query Performance Optimizations - Ensures stable performance by limiting query depth and managing resolver concurrency.
  • Query Batching - Reduces database load by grouping multiple operations into single requests through resolver tree analysis.
  • GraphQL Execution Tracing - Provides an execution tracer for monitoring and profiling GraphQL query performance using telemetry tools.
  • Parsing Depth Limits - Protects system resources by rejecting GraphQL queries that exceed a maximum nesting depth.
  • GraphQL Execution Tracing - Provides a profiling implementation for monitoring and tracing GraphQL query execution using telemetry tools.
  • Concurrency Limits - Controls the number of simultaneous resolver goroutines per request to prevent system overload.
  • Panic Recovery - Intercepts runtime panics during resolver execution and converts them into structured GraphQL error responses.
  • Name-Based Field Resolvers - Automatically maps GraphQL schema fields to internal Go methods using name-based matching for efficient resolution.
  • Query Languages - GraphQL server focused on ease of use.

Star history

Star history chart for neelance/graphql-goStar history chart for neelance/graphql-go

How this analysis was created: This summary and feature list are AI-generated from collected project material and can contain mistakes. Stars, license and language are imported from GitHub. Inclusion does not mean that we have tested or audited this project. Check the source documentation for any feature you depend on. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does neelance/graphql-go do?

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.

What are the main features of neelance/graphql-go?

The main features of neelance/graphql-go are: GraphQL Servers, Data Fetching Optimizations, GraphQL Subscriptions, WebSocket Subscriptions, GraphQL Subscriptions over WebSocket, Query Depth Restrictions, Recursive Schema Execution, GraphQL API Implementations.

Which projects share features with neelance/graphql-go?

Projects with overlapping indexed features include: graph-gophers/graphql-go — graphql-go is a schema-first GraphQL library and server implementation for Go. It provides a query execution engine… async-graphql/async-graphql — async-graphql is a type-safe framework for building specification-compliant GraphQL servers in Rust. It uses… graphql-dotnet/graphql-dotnet — GraphQL.NET is a server-side framework for building and executing GraphQL APIs within C# applications. It provides a… chillicream/hotchocolate — HotChocolate is a GraphQL server implementation for .NET that handles queries, mutations, and subscriptions over HTTP.… graphql-rust/juniper — Juniper is a GraphQL server library and schema engine for Rust. It provides a toolkit for building type-safe APIs by… 99designs/gqlgen — gqlgen is a schema-first Go library designed to build type-safe GraphQL servers. It functions as a code generation…

Projects sharing features with Graphql Go

These projects share indexed features with Graphql Go. Shared tags can include platform or build tooling; verify the primary use case before treating a result as a replacement.
  • graph-gophers/graphql-gograph-gophers avatar

    graph-gophers/graphql-go

    4,755View on GitHub↗

    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

    Go
    View on GitHub↗4,755
  • async-graphql/async-graphqlasync-graphql avatar

    async-graphql/async-graphql

    3,671View on GitHub↗

    async-graphql is a type-safe framework for building specification-compliant GraphQL servers in Rust. It uses procedural macros to automatically generate schemas from native language structures, ensuring consistency between the data model and the API specification. The project provides native support for Apollo Federation v2, allowing entities and fields to be shared and resolved across multiple distributed subgraphs. It also implements real-time data streaming via WebSocket subscriptions and asynchronous event streams. The framework includes a wide array of capabilities for schema design, su

    Rust
    View on GitHub↗3,671
  • graphql-dotnet/graphql-dotnetgraphql-dotnet avatar

    graphql-dotnet/graphql-dotnet

    5,987View on GitHub↗

    GraphQL.NET is a server-side framework for building and executing GraphQL APIs within C# applications. It provides a comprehensive toolkit for schema building, a federated engine for distributed data graphs, and a subscription handler for managing real-time data streams. The project distinguishes itself with a flexible schema builder that supports both programmatic code-first definitions and declarative schema-first approaches using the standard schema definition language. It includes a dedicated federation engine to split data graphs into subgraphs and compose them into a unified gateway, as

    C#apidotnet-coregraphiql
    View on GitHub↗5,987
  • chillicream/hotchocolateChilliCream avatar

    ChilliCream/hotchocolate

    5,713View on GitHub↗

    HotChocolate is a GraphQL server implementation for .NET that handles queries, mutations, and subscriptions over HTTP. It provides code-first schema generation directly from C# classes and attributes, keeping the schema and business logic in sync without manual type definitions. The project also includes a GraphQL gateway that composes multiple GraphQL and REST endpoints into a single unified schema, along with a GraphQL IDE for exploring, testing, and debugging GraphQL APIs interactively. The project distinguishes itself through its comprehensive tooling ecosystem, which includes a GraphQL c

    C#
    View on GitHub↗5,713
Compare all 30 related projects→