diff --git a/ShopifySharp/Services/Graph/GraphService.cs b/ShopifySharp/Services/Graph/GraphService.cs index 3085841af..68311b454 100644 --- a/ShopifySharp/Services/Graph/GraphService.cs +++ b/ShopifySharp/Services/Graph/GraphService.cs @@ -88,7 +88,7 @@ public virtual Task SendAsync(string graphqlQuery, Type resultType, int? return SendAsync(new GraphRequest { query = graphqlQuery }, resultType, graphqlQueryCost, cancellationToken); } - public virtual async Task SendAsync(GraphRequest request, Type resultType, int? graphqlQueryCost = null, CancellationToken cancellationToken = default) + public virtual async Task PostAsync(GraphRequest request, Type resultType, int? graphqlQueryCost = null, CancellationToken cancellationToken = default) { var elt = await this.SendAsync(request, graphqlQueryCost, cancellationToken); var ptyElt = elt.EnumerateObject().Single().Value;