graphql-go
graphql-go copied to clipboard
GraphQL server with a focus on ease of use
Hi Y’all, Super excited to see that [1.4.0 ](https://github.com/graph-gophers/graphql-go/releases/tag/v1.4.0)included support for Apollo Federation. Our team at Apollo maintains the [Apollo Federation Subgraph Compatibility](https://github.com/apollographql/apollo-federation-subgraph-compatibility) repo. Our goal for this project is...
Add an example of using graphql.ID. More specifically creating one from an integer and extracting an int value out of it. All [examples](https://github.com/graph-gophers/graphql-go/wiki/Examples) must be placed in the `/examples/` folder...
Hi, ## Description This PR goal is to bring ability to use so custom directives, as mentioned in issue https://github.com/graph-gophers/graphql-go/issues/151. I would be interested in having feedbacks, mainly on the...
Hi team, I am hoping use it to write a "gateway" plugin for [Traefik](https://github.com/traefik/traefik) to further limit the queries exposed by [Hasura GraphQL Engine](https://github.com/hasura/graphql-engine). The `Validate` API is so useful!...
The current subscription example implements Apollo's [[email protected] protocol](https://github.com/apollographql/subscriptions-transport-ws/blob/v0.9.4/PROTOCOL.md) but this protocol is no longer being maintained: From the README in [apollographql/subscriptions-transport-ws](https://github.com/apollographql/subscriptions-transport-ws#graphql-ws): > The subscriptions-transport-ws library is not actively maintained. It...
Hi Graph Gophers. We are trying to use the Union type in our schema. The first example I have tried is similar to the starwars example's SearchResult type, but the...
**Problem:** Inefficient microservice/database queries. If I need to return 100 orders with their clients, I have to make 101 requests to microservices (1 for batch of orders, 100 for their...
What's requested in https://github.com/neelance/graphql-go/issues/17 . Use case: we have `Order` and `Owner` entities stored in the DB, each `Order` refers to one `Owner`. We want to expose the API to...
Hey there! I'm using `v.1.3.0` of this library to query a high number (say 2000) of the same thing: ```graphql query slots($blocknum: Long!) { slot0: block (number: $blocknum) { account(address:...