我可以在 .NET Core 中使用 httpclient 发送 GraphQL 查询吗?
Can I send GraphQL queries with an httpclient in .NET core?
是否可以使用 .NET Core 中的标准 httpclient 发送 graphQL 查询?
当我尝试使用 client.post 发送查询时,我得到 "Expected { or [ as first syntax token."
如何使用 httpclient 发送 GraphQL 查询。
无需使用库(如 GraphQLHttpClient 等)
知道了:
只需将“查询”添加为 json 对象。像这样:
{"query" : "query { __schema { queryType { name } mutationType { name } types { name } directives { name } } }"}
在 .NET 中,您可以在 HTTP post 中使用它(不要忘记对双引号进行字符串转义
private static string myquery = "{ \"query\" : \"query { __schema { queryType { name } mutationType { name } types { name } directives { name } } }\" }";
是否可以使用 .NET Core 中的标准 httpclient 发送 graphQL 查询?
当我尝试使用 client.post 发送查询时,我得到 "Expected { or [ as first syntax token."
如何使用 httpclient 发送 GraphQL 查询。 无需使用库(如 GraphQLHttpClient 等)
知道了: 只需将“查询”添加为 json 对象。像这样:
{"query" : "query { __schema { queryType { name } mutationType { name } types { name } directives { name } } }"}
在 .NET 中,您可以在 HTTP post 中使用它(不要忘记对双引号进行字符串转义
private static string myquery = "{ \"query\" : \"query { __schema { queryType { name } mutationType { name } types { name } directives { name } } }\" }";