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.
///
///
///