ShopifySharp
ShopifySharp copied to clipboard
ShopifySharp is a .NET library that helps developers easily authenticate with and manage Shopify stores.
In `BuildAuthorizationUrl` whatever URL we pass in is not URI encoded automatically, the documentation also does not suggest that we need to, however oauth spec seems to require that we...
This PR refactors ShopifySharp's GraphQL model generation. A dedicated project has been introduced to parse Shopify's GraphQL schema into an Abstract Syntax Tree. We then walk the AST to create...
Having an issue when Deserializing a webhook into a GraphQL Order. I used the Webhooks service to create the webhook, as outlined in the AuntieDot project. Works fine when using...
Hi Team, I’m currently working on a Shopify public app (non-embedded), where users authorize their store via the standard OAuth flow. Upon successful installation, I attempt to register an `orders/create`...
Right now the classes in ShopifySharp.GraphQL are purely the responses returned by Shopify. We can modify the introspection query to have Wish.GraphQLSchemaGenerator generate classes for query/mutation payloads as well.
I was looking for ways to be able to have access to the HttpClient used by ShopifySharp, to be able: 1. to easily log requests and responses for all HTTP...
 While configuring my Visual Studio to handle syntax highlighting for GraphQL, i ran into issues with Shopify Sharps GraphRequest class. After doing some more digging, i found that other...
When downloading the JSONL file for a bulk operation query with Customer data (and other data but have only made it to the Customer for now) and trying to deserialize...
The `GraphServiceFactory` should allow overriding the API version used by the GraphService it creates. See #1186
Does anyone have a good example of the steps needed to upload images to products (hopefully with some snips)? Working through updating my Rest requests to GraphQL and thought this...