我看不到我的 GraphQL Graph 的架构。当我使用 Web API GraphQL 控制器作为端点时,内省不起作用。
我目前已尝试使用 GraphiQl 和 UI.Playground 库
[Route("graphql")]
[ApiController]
public class GraphQLController : ControllerBase
我希望看到使用 GraphQL.NET 库提供的自省的模式和类型,但不幸的是我没有。我目前正在使用 Insomnia Client 来获取架构,但 GraphiQL 和 GraphQL.Server.Ui.Playground 无法完成这项工作。
我正在使用 Joe McBride 的 GraphQL.NET 2.4.0
[HttpPost]
public async Task<IActionResult> PostAsync([FromBody]GraphQLQuery query)
在哪里
public class GraphQLQuery
{
public string OperationName { get; set; }
public string NamedQuery { get; set; }
public string Query { get; set; }
public Newtonsoft.Json.Linq.JObject Variables { get; set; }
}