Pavel Nikolov
Pavel Nikolov
What version of Go are you using?
This is something that I've wanted to do for quite some time. Unit tests, PRs are more than welcome. Fuzzy testing is extremely important from security point of view.
As far as I understand it, when a type is nullable in the GraphQL schema, then it needs to be a pointer in Golang. Am I missing something?
> With implementation the way it currently is, I'd have to implement one with a pointer receiver and one with a concrete receiver, which shouldn't matter. Well, how often do...
@jbacon out of curiosity what was the performance hit? Also, why did you have to change the resolver's pointer receivers? You could as well dereference the pointer in the resolver.
I'm not sure I follow. Could you, please, give an example?
Take a look at the handler code here https://github.com/graph-gophers/graphql-go/blob/master/relay/relay.go#L50 Indeed the handler expects a JSON request with `query` and optional `variables` and `operationName`. It should be trivial for you to...
@agnivade I am working on exposing the selected fields in each resolver as well as their child fields. This has been the most requested feature to the library ever. There...
I agree that making the AST public would open some interesting opportunities.
PRs are welcome! I'd be happy if this is added somehow as an opt-in feature as it might not be applicable to all users of the library. The library needs...