graphql icon indicating copy to clipboard operation
graphql copied to clipboard

An implementation of GraphQL for Go / Golang

Results 139 graphql issues
Sort by recently updated
recently updated
newest added

how can i access to the playground of graphql using gin ???

If the enum is `"aborted "` this will cause an error. `"aborted"` is the accepted value. Would like to enhance so that trailing white spaces are allowed, if possible. When...

Hello. I created a simple example according to testutil/testutil.go. But when running my example, I get constant error. Stuck for many hours trying to find out what's wrong with my...

Will there be a new release soon? I see recent PR merges but no new release since 8/2021.

I've seen a closed issue regarding disabling introspection in grahql playground. As the solution was deleted, still not clear how to disable introspection in golang. Basically I just wanna see...

I'm having the following problem, I need to dynamically create an object type from the data I get from the database. However I need the args parameter of the grapqh...

There are some examples : `type VenuePlan { groundPeriods(ground: ID!):[VenuePeriod!]! }` `type VenuePlanGround { Periods(date: Time!):[VenuePeriod!]! }` and when i run code generating in front-end side, there is the error:...

Because of following two syntax ### does not support `= null` - varName: Boolean = null ### '`#`' character inside string cause parser(probably lexer) broken - @deprecated(reason: "The `ProjectV2View#order_by`...") ###...

## Background - I'm trying to use [Apollo Supergraph](https://www.apollographql.com/supergraph) to build the composition of microservices. Its [router](https://www.apollographql.com/docs/router/quickstart) can automatically using defined graphql to communicate with microservices. - Microservice needs to...