Auto-tag orders by their risk level, with Mechanic.

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

Auto-tag orders by their risk level

This task applies the tag of your choice to incoming orders, based on the risk level determined for the order. Run this task manually to tag all orders in your store's records, according to their respective risk levels. Combine this task with an email task, to email customers when their order is flagged.

Runs Occurs whenever an order is updated and Occurs when a user manually triggers the task. Configuration includes risk levels and tags.

15-day free trial – unlimited tasks

Documentation

This task applies the tag of your choice to incoming orders, based on the risk level determined for the order. Run this task manually to tag all orders in your store's records, according to their respective risk levels. Combine this task with an email task, to email customers when their order is flagged.

This task applies the tag of your choice to incoming orders, based on the risk level determined for the order.

Run this task manually to tag all orders in your store's records, according to their respective risk levels.

Combine this task with "Email customers when their order is tagged" to alert customers when their order is flagged.

Feel free to remove a tag from this task's options, if you don't need it. :)

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/orders/updated
mechanic/user/trigger
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
risk levels and tags (keyval, required)
Code
{% assign valid_risk_level_keys = "Low,Medium,High" | split: "," %}
{% for keyval in options.risk_levels_and_tags__keyval_required %}
  {% assign some_risk_level_key = keyval[0] | capitalize %}
  {% unless some_risk_level_key == blank or valid_risk_level_keys contains some_risk_level_key %}
    {"error": {{ keyval[0] | json | prepend: "Unknown risk level " | append: ". Valid risk level values: low, medium, high" | json }}}
  {% endunless %}
{% endfor %}

{% assign order_nodes = array %}

{% if event.preview %}
  {% assign order_nodes[0] = '{"id":"gid://shopify/Order/1234567890","tags":[]}' | parse_json %}
  {% assign order_nodes[0]["riskLevel"] = options.risk_levels_and_tags__keyval_required.first[0] | upcase %}
{% elsif event.topic == "shopify/orders/updated" %}
  {% capture query %}
    query {
      order(id: {{ order.admin_graphql_api_id | json }}) {
        id
        tags
        riskLevel
      }
    }
  {% endcapture %}

  {% assign result = query | shopify %}
  {% assign order_nodes[0] = result.data.order %}
{% elsif event.topic == "mechanic/user/trigger" %}
  {% assign cursor = nil %}

  {% for n in (0..100) %}
    {% capture query %}
      query {
        orders(
          first: 250
          after: {{ cursor | json }}
        ) {
          pageInfo {
            hasNextPage
          }
          edges {
            cursor
            node {
              id
              tags
              riskLevel
            }
          }
        }
      }
    {% endcapture %}

    {% assign result = query | shopify %}

    {% assign order_nodes = result.data.orders.edges | map: "node" | concat: order_nodes %}

    {% if result.data.orders.pageInfo.hasNextPage %}
      {% assign cursor = result.data.orders.edges.last.cursor %}
    {% else %}
      {% break %}
    {% endif %}
  {% endfor %}
{% endif %}

{% for order_node in order_nodes %}
  {% assign tag_to_add = nil %}
  {% assign tags_to_remove = array %}

  {% assign risk_level_key = order_node.riskLevel | capitalize %}
  {% for keyval in options.risk_levels_and_tags__keyval_required %}
    {% assign some_risk_level_key = keyval[0] | capitalize %}

    {% if risk_level_key == some_risk_level_key %}
      {% if order_node.tags contains keyval[1] %}
        {"log": {{ order_node.id | prepend: "Order " | append: " is already appropriately tagged " | append: keyval[1] | json }}}
      {% else %}
        {% assign tag_to_add = keyval[1] %}
      {% endif %}
    {% elsif order_node.tags contains keyval[1] %}
      {% assign tags_to_remove[tags_to_remove.size] = keyval[1] %}
    {% endif %}
  {% endfor %}

  {% if tag_to_add != blank or tags_to_remove != empty %}
    {% action "shopify" %}
      mutation {
        {% if tag_to_add != blank %}
          tagsAdd(
            id: {{ order_node.id | json }}
            tags: {{ tag_to_add | json }}
          ) {
            userErrors {
              field
              message
            }
          }
        {% endif %}

        {% if tags_to_remove != empty %}
          tagsRemove(
            id: {{ order_node.id | json }}
            tags: {{ tags_to_remove | json }}
          ) {
            userErrors {
              field
              message
            }
          }
        {% endif %}
      }
    {% endaction %}
  {% endif %}
{% endfor %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more
Defaults
Risk levels and tags
{"Low"=>"low-risk", "Medium"=>"medium-risk", "High"=>"high-risk"}