I had a question. Is it possible to have multiple query resolvers?
as in normally, there is one /query route and then one can do say
query {
companies { name }
}
but I need something like.
/companies/query
/employees/query
because I need to manage access for different user type
Hi all. I have been using gqlgen for a while. I am attempting to add to a fairly large project which has been working for a while but now I am running into this error which I have not seen before. This occurs when I try to generate
generating core failed: generated!.gotpl: template: generated!.gotpl:53:38: executing "generated!.gotpl" at <$field.ComplexitySignature>: error calling ComplexitySignature: too many collisions, last attempt was graphql10
It doesnt give me too much to go off of. Where do I start to dig into the root cause of this?
go: finding module for package github.com/99designs/gqlgen/example/federation/accounts/graph/model
tidy failed: go mod tidy failed: exit status 1
exit status 3
I ant to add Gorm fields to the models fo gqlgen. I am trying to figure out where to put the modelgen hook file ad how it is used. Is there a pattern for it?
This is the documentation i am referring to -> https://gqlgen.com/recipes/modelgen-hook/
go get github.com/99designs/gqlgen
everything was fine
Hey! I put together a small sample integrating graph-gophers/dataloader with GqlGen, and IMO it's pretty straight forward. What do you guys think? Would this be worth offering as an option in the GqlGen dataloader docs?