1

我在我的 wordpress 仪表板上安装了 WPGraphQL 插件,但我尝试通过 mysite/graphql 访问它

我收到了这个错误

{"errors":[{"message":"GraphQL Request must include at least one of those two parameters: \"query\" or \"queryId\"","extensions":{"category":"request"}}],"extensions":{"debug":[]}}

可能是什么原因?

4

2 回答 2

1

您必须传递一个查询参数,例如:http://localhost:8000/graphql?query={user(id:1){email}} 并且您想要 graphql-playground 然后安装 play-ground 包然后访问 play-ground通过这个链接:http://localhost:8000/graphql-playground

于 2021-02-17T12:32:45.513 回答
0

正如其他人所说,您需要一个查询。

当扩展被激活时,它充当任何 API。它会为您提供您请求的数据,而不是引导您访问某个网站。您可以访问 GraphiQL IDE 以获得您可以进行的查询的可视化表示。

于 2021-04-22T07:11:03.720 回答