0

我们如何在 ASP.NET Framework Web 应用程序中实现 Graphql Playground?我能够使用 Postman 的新 GraphQL POST 进行查询,并且它按预期工作。但我无法使用 HotChocolate 的 AspNet Classic GraphiQL nuget 托管 graphiql 游乐场。

https://www.nuget.org/packages/HotChocolate.AspNetClassic.GraphiQL/

如果任何人都可以提供特定于 ASP.NET 框架的代码片段或文档,那将非常有帮助。

4

1 回答 1

1

您所要做的就是将其添加到您的 startup.cs 文件中:

 //Graph QL add to pipeline and use schemas
 // app.UseWebSockets()
    app.UseGraphQL("/graphql")
       .UsePlayground();

如果您愿意,您也可以自动启动它。每次您点击调试时,如果您在项目属性中设置 url,它将打开操场

在此处输入图像描述

于 2020-04-17T16:28:14.563 回答