Skip to content

feat: add graphql-go-tools to go/server #1283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: graphql-go-tools
description: A collection of tools for building GraphQL Servers, Gateways, Proxy Servers and Middleware in Go.
url: https://github.com/wundergraph/graphql-go-tools
github: wundergraph/graphql-go-tools
---
graphql-go-tools implements all basic blocks for building GraphQL Servers, Gateways and Proxy Servers.
From lexing, parsing, validation, normalization, all the way up to query planning and execution.


It can also be understood as a GraphQL Compiler, with the ability to add your own backends.
Just by implementing a few interfaces, you're able to teach the compiler how to talk GraphQL to any backend.


The following backends are already implemented:
[GraphQL](https://github.com/wundergraph/graphql-go-tools/tree/master/pkg/engine/datasource/graphql_datasource), with support for Apollo Federation / Supergraph.
[Databases](https://github.com/wundergraph/wundergraph/tree/main/pkg/datasources/database): PostgreSQL, MySQL, SQLite, CockroachDB, MongoDB, SQLServer,
[OpenAPI / REST](https://github.com/wundergraph/wundergraph/tree/main/pkg/datasources/oas) and
[Kafka](https://github.com/wundergraph/graphql-go-tools/tree/master/pkg/engine/datasource/kafka_datasource).


To get a sense on how to implement a new backend, check out the [Static Data Source](https://github.com/wundergraph/graphql-go-tools/tree/master/pkg/engine/datasource/staticdatasource),
as it's the simplest one.

It's used in production by many enterprises for multiple years now, battle tested and actively maintained.