-
Hello! I'm trying to implement type auto registration using HotChocolate 13.0.2 and dotnet 7.0 as suggested here. Tried configuring server using: builder.Services
.AddGraphQLServer()
.AddTypes(); Got error for
Any assistance you can provide would be appreciated. Full example is here. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
c0ngruens
Feb 17, 2023
Replies: 2 comments 1 reply
-
How to implement auto registration can be found using template |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
c0ngruens
-
I had the same issue and was able to work it out:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to implement auto registration can be found using template
dotnet new install HotChocolate.Templates
. I've updated my example repo.