Mechanic is a development platform for Shopify. :)
This task watches for new orders, and tags each order with all line item SKUs found in that order.
Runs when an order is created.
Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Gurus, everybody.
That’s why we make it easy to configure automation without code, why we make it easy to tweak the underlying code once tasks are installed, and why we publish it all here for everyone to learn from.
{% if event.preview %} {% capture order_json %} { "admin_graphql_api_id": "gid://shopify/Order/12345", "line_items": [ { "sku": "ABC123" }, { "sku": null }, { "sku": "DEF456" } ] } {% endcapture %} {% assign order = order_json | parse_json %} {% endif %} {% assign skus = order.line_items | map: "sku" | compact %} {% if skus != empty %} {% action "shopify" %} mutation { tagsAdd( id: {{ order.admin_graphql_api_id | json }} tags: {{ skus | json }} ) { userErrors { field message } } } {% endaction %} {% endif %}