Reading and Writing to Shopify
Reading data
{% capture query %}
query {
product(id: "gid://shopify/Product/1234567890") {
title
status
}
}
{% endcapture %}
{% assign result = query | shopify %}
{{ result.data.product.title }}Writing data
Responding to Shopify events
Related
Last updated
Was this helpful?