Nick Randall

Results 115 comments of Nick Randall

One question I have is what should the type be of the list of fields. I started by making it a `[]string` with dot-notation for recursive fields. However, to get...

@tonyghita is there a specific part of the `introspection` that you think I could integrate with? From what I can tell, it is mostly for introspecting schemas and not (necessarily)...

Is it worth it for me to refactor this PR to resolve conflicts or should I abandon it? @neelance if we got this right, would you merge?

I think that we can do better than my implementation here. As I recall, this was a quick and dirty proof of concept. The JavaScript implementation of Graphql has a...

I left some comments on this subject here: https://github.com/graph-gophers/graphql-go/pull/70#issuecomment-379957784 As I mentioned there, I believe that the context is the idiomatic place to put these fields even if it requires...

I agree that this could cause people to write bad code resolvers, but it could also help write efficient resolvers. For example, one could use that information to prevent an...

@DenisNeustroev Facebook has a recommendation on how to solve the n+1 problem with a technique called [DataLoader](https://github.com/facebook/dataloader). I have taken a stab at implementing this technique in go here: https://github.com/nicksrandall/dataloader....

@tj I took at stab at implementing this in #70 . Would you mind sharing what you did as a work around?

@neelance what do you mean by "upper resolvers"? I think it is reasonable for a resolver to be aware of it's children and thus aware of the fields requested for...

It appears to be back down again.