ShopifySharp
ShopifySharp copied to clipboard
ShopifySharp is a .NET library that helps developers easily authenticate with and manage Shopify stores.
RefundLineItem has this `decimal` property: ```csharp [JsonProperty("total_tax")] public decimal? TotalTax { get; set; } ``` And `PriceSet` version of it: ```csharp [JsonProperty("total_tax_set")] public PriceSet TotalTaxSet { get; set; } ```...
IsValidShopDomainAsync should check if shopDomain is a valid uri before building the shop domain uri
Since the method IsValidShopDomainAsync is to determine whether the shopDomain variable is a valid shop domain it should also check if the shopDomain string is a valid uri before trying...
Hi, With my project I want to use the GraphAPI to fetch products, orders, etc. ShopifySharp has a GraphService which would be able to fullfill this purpose (as far as...
read_publications, write_publications are needed for graphQl queries and mutations involving publications. These are currently not in the access scope list and have to be hacked into the authorization url to...
 "ValueType" should be "Type", "integer" should be "number_integer" God I'm so glad this repo exists.
creates the wiki docs reference as a submodule of the main library under docs/wiki Also updates wiki metafield.md file Commits accidentally made with my work account
In gathering data from the Shopify API via ShopifySharp, there seems to be nowhere where the cost for the product or variant is returned. I would like this data since...
When deserializing the response from a GraphQL mutation, System.Text.Json.JsonSerializer is throwing an exception, whereas NetwtonSoft can deserialize the response successfully. For example, using the following code: ``` public async Task...
I don't see the properties [JsonProperty("properties")] as part of the LineItem class. It seems to be missing. I added the following [JsonProperty("properties")] public IEnumerable LineProperties { get; set; } to...
Hi, I just updated from Version 6.3.0 to 6.6.0 and without changing the queries, I get the following error message when running GraphQL calls: _{"(400 Bad Request) query: Required parameter...