There should be a way where we are able to use gqlgen with our choice of router framework and without creating a separate module. #1799
Unanswered
piyushgupte
asked this question in
Q&A
Replies: 2 comments
-
The module name is Perhaps you can use a |
Beta Was this translation helpful? Give feedback.
0 replies
-
In my go.mod file i can see replace directive been used , but still i am getting same error on "go get github.com/99designs/gqlgen" am i doing something wrong here. go.mod====> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What happened?
I don't want to create a different module for my graphql service it is part of our multi service architecture so i want to create it within the same module of our project , but when i do "go get github.com/99designs/gqlgen" i get error message due to conflict in version with the blackfriday package.
go: github.com/russross/blackfriday/[email protected] used for two different module paths (github.com/russross/blackfriday/v2 and gopkg.in/russross/blackfriday.v2)
so is there any way we can get rid of this conflicting dependency.
What did you expect?
There should be a way where we should be able to use graphql gen with our choice of router framework and without creating a separate module.
Minimal graphql.schema and models to reproduce
versions
gqlgen version
? => 0.13go version
?=> 1.14Beta Was this translation helpful? Give feedback.
All reactions