diff --git a/_articles/inspecting-all-data-in-shopify-flow-app.md b/_articles/inspecting-all-data-in-shopify-flow-app.md index 2a48fbd..d8d8f69 100644 --- a/_articles/inspecting-all-data-in-shopify-flow-app.md +++ b/_articles/inspecting-all-data-in-shopify-flow-app.md @@ -21,15 +21,15 @@ I'm sure anyone who is trying to do this same thing would have the same challeng So it is incredibly helpful to have an example representation of what all the available Liquid variable contain. I had initially assumed that this would be as simple as doing something like: +{% raw %} ```

-{%- raw %}
 {{ shop | json }}
 {{ order | json }}
-{%- endraw %}
 
``` +{% endraw %} And submitting an order to get an email with a full representation of the information structure for an order. Unfortunately this doesn't work because these are in fact complex objects that make expensive API calls in the back-end in response to getters. @@ -49,8 +49,8 @@ So I've just spent a good while writing out an email tempalte for Shopify Flow t As always with all of my personal code, feel free to copy it and use it however you wish: +{% raw %} ``` liquid -{%- raw %}

Shop


@@ -470,7 +470,7 @@ As always with all of my personal code, feel free to copy it and use it however
     ]
 }
 
-{%- endraw %} ``` +{% endraw %} Or [find it on my GitHub](https://github.com/nottrobin/v20-email/blob/main/display-data.liquid). \ No newline at end of file