Mechanic is a development platform for Shopify. :)
This task automatically removes specific order tag(s) when orders are paid.
Runs when an order is paid. Configuration includes order tags to remove.
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" } {% endcapture %} {% assign order = order_json | parse_json %} {% endif %} {% action "shopify" %} mutation { tagsRemove( id: {{ order.admin_graphql_api_id | json }} tags: {{ options.order_tags_to_remove__array | json }} ) { userErrors { field message } } } {% endaction %}