Clement Gutel
Clement Gutel
Related https://github.com/stripe/stripe-apps/issues/848
For reference, we have now started using the same technique that EF8 uses for single-column contains, and applied it to multi-column scenarios. It looks like this (real code simplified for...
ShopifySharp already supports GraphQL. Everything that is possible to do with the GraphQL API should also be possible with ShopifySharp. The documentation is lacking but you can check the `GraphService`...
@jpboskdnz I assume you've checked the API docs: https://shopify.dev/docs/api/admin-graphql/2024-04/objects/Metaobject Using the `GraphService`, you should be able to do anything that is possible to do with the GraphQL API. Using the...
Taking a look at the following file might be helpful: https://github.com/nozzlegear/ShopifySharp/blob/8ee5ebd423650aaf7aaa59978c0bf710bc7f4900/ShopifySharp.Tests/Graph_SendTests.cs#L10
Yes you can use this: https://shopify.dev/docs/api/admin-graphql/2024-04/objects/Order#field-order-risk
You have to use the `GraphService` to query this API.
Hi @roji I was watching your video on [2nd level caching](https://www.youtube.com/live/1Ld3dtnTrMw?si=MEesoOMC__u3iipS&t=5182) and my understand is that it is only exists because different SQL needs to be generated depending on whether...
To deserialize automatically, try using the generic overload `SendAsync`.
Good catch. ShopifySharp relies on a separate library to generate GraphQLSchema.generated.cs I have now [fixed the issue](https://github.com/Wish-Org/Wish.GraphQLSchemaGenerator/commit/9e7c6b96aed0cde306f374a9da0d032f0acdec23) in that separate library and the issue should get resolved once ShopifySharp upgrades...