Mechanic is a development and ecommerce automation platform for Shopify. :)
This task watches for newly-paid orders, and adds a configurable tag to each one.
Runs Occurs whenever an order is paid. Configuration includes order tag to apply.
Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Shopifolks, 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.
(By the way, have you seen our documentation? Have you joined the Slack community?)
shopify/orders/paid
{% action "shopify" %}
mutation {
tagsAdd(
id: {{ order.admin_graphql_api_id | json }}
tags: {{ options.order_tag_to_apply__required | json }}
) {
userErrors {
field
message
}
node {
... on Order {
tags
}
}
}
}
{% endaction %}paid