0

是否可以使用 .NET 核心中的标准 httpclient 发送 graphQL 查询?当我尝试使用 client.post 发送查询时,我得到"Expected { or [ as first syntax token."

如何使用 httpclient 发送 GraphQL 查询。 无需使用库(如 GraphQLHttpClient 等)

4

1 回答 1

0

明白了:只需将“查询”添加为 json 对象。像这样:

{"query" : "query { __schema { queryType { name } mutationType { name } types { name } directives { name } } }"}

在 .NET 中,您可以在 HTTP 帖子中使用它(不要忘记对双引号进行字符串转义

private static string myquery = "{ \"query\" : \"query { __schema { queryType { name } mutationType { name } types { name } directives { name } } }\" }";
于 2021-02-26T14:54:04.883 回答