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

Hello. I get an error if I build a graphql server with golang version 1.19 ``` go build -o mona-agent # github.com/andrewwphillips/eggql/internal/handler ../../go/pkg/mod/github.com/andrewwphillips/[email protected]/internal/handler/handler.go:92:5: h.serveWS undefined (type *Handler has no field...

Simple input `String r` crashes the parser with infinite recursion. ```go func TestInfiniteRecursion(t *testing.T) { body := `String r` source := source.NewSource(&source.Source{ Body: []byte(body), }) _, err := Parse( ParseParams{...

I get an error "User Error: expected iterable, but did not find one for field ..." if I return a map from the resolver. A slice works fine. Why is...

because my data schema is dynamic and change at runtime, I can`t just define my sdl during program initialization. is extension a way to solve it ?

Hello, I got a question. I tried since hours to achieve to following: Let's assume, we got an Object called User. ``` input User { id int name string }...

### Steps to reproduce ``` func TestPrint(t *testing.T) { doc := &ast.Document{ Kind: kinds.Document, Loc: nil, Definitions: []ast.Node{ &ast.ObjectDefinition{ Kind: kinds.ObjectDefinition, Name: &ast.Name{ Kind: kinds.Name, Value: "myObject", }, Description: &ast.StringValue{...

This can help simplify some types of processing the AST with a visitor.

Hello there, I have been noticing that a lot of my time is spent reimplementing part of the request to a custom structure and then finding ways to use this...

I cannot find a way to use a enum type as a default value in the arguments of a query.