How to ignore missing nodes when deserialising json in .NET – Shopify
Some of the Shopify API's don't return nodes when they are not configured rather than returning null values. JSON EXAMPLE { "orders": [ { "id": 1, "customer": { "id": 001, } }, { "id": 2 } ] } In order…