使用 graphql 游乐场连接到 hasura 控制台
connect to hasura console using graphql playground
我在使用 Hasura built-in GrpahQL 操作用户界面时遇到困难。所以我决定像以前一样使用 GrpahQL playground。但是当我尝试访问确切的 graphql 端点时。操场上出现错误。
Unexpected token p in JSON at position 4
我也将我的 Hasura 管理员密码放在 HTTP headers 部分。
{
"x-hasura-admin-secret": "myadminsecretkey",
"content-type": "application/json"
}
Hasura 服务的 GraphQL 端点将在 /v1/graphql
可用。
所以在你的情况下,它将是 http://localhost:9695/v1/graphql
。
我在使用 Hasura built-in GrpahQL 操作用户界面时遇到困难。所以我决定像以前一样使用 GrpahQL playground。但是当我尝试访问确切的 graphql 端点时。操场上出现错误。
Unexpected token p in JSON at position 4
我也将我的 Hasura 管理员密码放在 HTTP headers 部分。
{
"x-hasura-admin-secret": "myadminsecretkey",
"content-type": "application/json"
}
Hasura 服务的 GraphQL 端点将在 /v1/graphql
可用。
所以在你的情况下,它将是 http://localhost:9695/v1/graphql
。