Auto-tag new draft orders, with Mechanic.

Mechanic is a development and ecommerce automation platform for Shopify. :)

Auto-tag new draft orders

Immediately upon the creation of a draft order, add one or more tags. Simple as that. :)

Runs Occurs whenever a draft order is created. Configuration includes draft order tags to add.

15-day free trial – unlimited tasks

Developer details

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?)

Open source
View on GitHub to contribute to this task
Subscriptions
shopify/draft_orders/create
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
draft order tags to add (array, required)
Code
{% if event.preview %}
  {% assign draft_order = hash %}
  {% assign draft_order["admin_graphql_api_id"] = "gid://shopify/DraftOrder/1234567890" %}
{% endif %}

{% action "shopify" %}
  mutation {
    tagsAdd(
      id: {{ draft_order.admin_graphql_api_id | json }}
      tags: {{ options.draft_order_tags_to_add__array_required | json }}
    ) {
      userErrors {
        field
        message
      }
    }
  }
{% endaction %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more