From 974fcd8810c535f0639618790ef1dc6e277d24e9 Mon Sep 17 00:00:00 2001 From: Joshua Harms Date: Tue, 16 Apr 2024 22:35:14 -0500 Subject: [PATCH] Update xml docs --- ShopifySharp/Services/Graph/GraphRequestUserErrorHandling.cs | 2 ++ ShopifySharp/Services/Graph/GraphService.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ShopifySharp/Services/Graph/GraphRequestUserErrorHandling.cs b/ShopifySharp/Services/Graph/GraphRequestUserErrorHandling.cs index d606855d..7b63df9f 100644 --- a/ShopifySharp/Services/Graph/GraphRequestUserErrorHandling.cs +++ b/ShopifySharp/Services/Graph/GraphRequestUserErrorHandling.cs @@ -2,7 +2,9 @@ namespace ShopifySharp; public enum GraphRequestUserErrorHandling { + /// Tells the service to throw an exception if the response contains a non-empty userErrors object. Throw, + /// Tells the service ignore any userErrors objects in the response. DoNotThrow } diff --git a/ShopifySharp/Services/Graph/GraphService.cs b/ShopifySharp/Services/Graph/GraphService.cs index 193f2690..72aee5e9 100644 --- a/ShopifySharp/Services/Graph/GraphService.cs +++ b/ShopifySharp/Services/Graph/GraphService.cs @@ -147,7 +147,7 @@ public virtual async Task SendAsync(GraphRequest request, int? #endif /// - /// Sends a GraphQL request with variables to Shopify's GraphQL API. + /// Sends a Graph request with variables to Shopify's Graph API. /// /// ///