gqlgen icon indicating copy to clipboard operation
gqlgen copied to clipboard

go generate based graphql server library

Results 311 gqlgen issues
Sort by recently updated
recently updated
newest added

### What happened? If the operation field is incorrect during the file upload, a panic is triggered. `assignment to entry in nil map` The panic occurs in https://github.com/99designs/gqlgen/blob/master/graphql/handler.go#L115 Request: ```...

I think we should add support for framework like [GoFiber](https://github.com/gofiber/fiber). Someone has already tried: https://github.com/Just4Ease/fiber-gqlgen/blob/master/handler.go. Here a discussion on gofiber: https://github.com/gofiber/fiber/issues/403.

enhancement
low-priority
transport
contrib

Looks like this pr caused an issue in code gen: https://github.com/99designs/gqlgen/pull/1404 The generated code expects a resolver for inputs now but it fails to implement the resolver. Also, the model...

accepted

### What happened? Tried to include an inline fragment with no type specified. According to the [specification example 24](https://spec.graphql.org/June2018/#example-77377) that should work. But the fields of the included fragment are...

### What happened? When running an introspection query against a GraphQL schema implemented with gqlgen, I receive the following (snippet of the full response): ``` ... { "description": "An enum...

### What happened? Typo in gqlgen/docs/content/reference/changesets.md ```graphql type Mutation { updateUser(id: ID!, changes: UserChanges!): User } type UserChanges { name: String email: String } ``` ### What did you expect?...

### What happened? I generated a `models_gen.go` based on this schema: ```graphql type EmailSmtpInfo { emailBCC: String } ``` and got: ```go type EmailSMTPInfo struct { EmailBcc *string `json:"emailBCC"` }...

### What happened? Hi there, When trying to obtain the variables from a request context Object (with `graphql.GetRequestContext(ctx).Variables` with the following query: ``` query MyQuery { queryNode(filter:{isRoot:true}) { name }...

I think there is a mistake in CHANGELOG.md template when there are links: ![image](https://user-images.githubusercontent.com/41120635/149763464-449511a1-8aa3-449d-8a53-8f07211f51f6.png)

Hi there, Is is possible to pass authentication via `&graph.Resolver{}` instead of through context? Having Auth in middleware/context tightly couples it to the implementation (and requires all tests, etc to...

enhancement