About 909,000 results
Open links in new tab
  1. An implementation of GraphQL for Go / Golang - GitHub

    The following is a simple example which defines a schema with a single hello string-type field and a Resolve method which returns the string world. A GraphQL query is performed against this schema …

  2. Building a GraphQL Server with Go Backend Tutorial | Intro

    gqlgen is a library for creating GraphQL applications in Go. In this tutorial we Implement a Hackernews GraphQL API clone with golang and gqlgen and learn about GraphQL fundamentals along the way.

  3. Building GraphQL servers in golang — gqlgen

    gqlgen is a schema-first library — before writing code, you describe your API using the GraphQL Schema Definition Language. By default this goes into a file called schema.graphqls but you can …

  4. Tools and Libraries | GraphQL

    A collection of tools for building GraphQL Servers, Gateways, Proxy Servers and Middleware in Go.

  5. Using GraphQL with Golang - Apollo GraphQL Blog

    Oct 6, 2021 · If you’ve been wondering how to build a backend API with GraphQL and Golang, you’ll be pleased to know that there are some great community-supported libraries that help you do just that.

  6. GraphQL with Golang: A Deep Dive From Basics To Advanced

    Aug 19, 2024 · In this deep dive, we‘ll go from GraphQL basics to advanced techniques like authentication, data loaders, and query complexity when using gqlgen – a Go library for building …

  7. graphql package - github.com/graphql-go/graphql - Go Packages

    Apr 10, 2023 · README ¶ graphql An implementation of GraphQL in Go. Follows the official reference implementation graphql-js. Supports: queries, mutations & subscriptions. Documentation godoc: …

  8. Building Scalable APIs with Golang and GraphQL - BrowserStack

    Sep 17, 2025 · Learn how to build scalable GraphQL APIs with Golang, tackle common challenges, and debug smarter with Requestly HTTP Interceptor.

  9. GraphQL and Golang - Medium

    GraphQL is a powerful query language for APIs that enables clients to request exactly the data they need. When combined with Go (Golang), a fast and efficient programming language, and...

  10. Setting Up a GraphQL API with Golang and GQLGen

    Jan 10, 2025 · In this tutorial, we’ll go through the steps to set up a simple GraphQL API using Golang and GQLGen.