ChilliCream / hotchocolate-examples

MIT License
187 stars 137 forks source link

HotChocolate 13.9 with AspNet Core 8 documentation needs improvements #62

Open fpiazza99 opened 6 months ago

fpiazza99 commented 6 months ago

Using the tutorials to generate a HotChocolate 13.9 with AspNet Core 8 test project does not always work.

I found thru many searches that the following addition was needed:

app.MapGraphQL() .WithOptions(new GraphQLServerOptions() { Tool = { ServeMode = GraphQLToolServeMode.Embedded } });