I expected to get a graphql project with all the components including resolver.go, schema.resolvers.go, and the server.go

if i run it inside my GOROOT folder it shows this response

Try this, it worked for me now:
try using this combination. Update it in go.mod file and run "go mod tidy"
github.com/99designs/gqlgen v0.11.3
github.com/vektah/gqlparser/v2 v2.0.1
But it took my 3-4 hours to resolve this.
Try this, it worked for me now:
try using this combination. Update it in go.mod file and run "go mod tidy"
github.com/99designs/gqlgen v0.11.3
github.com/vektah/gqlparser/v2 v2.0.1But it took my 3-4 hours to resolve this.
Thanks, solved it for me, much appreciate it man
but can you do 'gqlgen generate' because for me, i cant seem to generate gqlgen commands
here is my terminal

I had this problem too. I appreciate your quick solution. Just wanted to try out gqlgen quickly. Generate seems to be working for me, unlike what you just brought up.
goto graph -> cd graph
go run github.com/99designs/gqlgen generate
This is working for me
go run github.com/99designs/gqlgen generate
apparently this doesn't work for me, i can check my version but i still can't generate, it returns nothing

if i execute 'go run gqlgen generate' it show output like this

go run github.com/99designs/gqlgen generate
apparently this doesn't work for me, i can check my version but i still can't generate, it returns nothing
if i execute 'go run gqlgen generate' it show output like this
an update, mine worked now, I try deleting the schema.resolvers.go and then run "go run github.com/99designs/gqlgen generate" without the "". After the new schema.resolvers.go is built i can use generate by running the previous command
Most helpful comment
Try this, it worked for me now:
try using this combination. Update it in go.mod file and run "go mod tidy"
github.com/99designs/gqlgen v0.11.3
github.com/vektah/gqlparser/v2 v2.0.1
But it took my 3-4 hours to resolve this.