nozzlegear / ShopifySharp

ShopifySharp is a .NET library that helps developers easily authenticate with and manage Shopify stores.
https://nozzlegear.com/shopify-development-handbook
MIT License
757 stars 313 forks source link

Get order by custom field like Metafield #922

Open TheCoder632 opened 1 year ago

TheCoder632 commented 1 year ago

Hi, I would like to know if there is a way to filter orders by custom field like Metafield?

the below code works fine with tag but when i try another field like "note" it doesnt work :

public class TaggedOrderListFilter : OrderListFilter { public string Tag { get; set; } }

var orderService = new OrderService(domain, token); var filter = new TaggedOrderListFilter { Tag = "readytoship", Status = "any" }; var listResult = await orderService.ListAsync(filter);

TheCoder632 commented 1 year ago

@nozzlegear any help ?