你好朋友,我想通过oauth_token
并client_id
进入 GraphQL 客户端的请求正文。那么我该如何传递它们,因为 GraphQLRequest 只有三个字段(即 Query、Variables 和 OperationName)。请建议。
using GraphQL.Client;
var heroRequest = new GraphQLRequest{ Query = Query };
var graphQLClient = new GraphQLClient("URL");
var graphQLResponse = await graphQLClient.PostAsync(heroRequest);