Set product types by title keywords, with Mechanic.

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

Set product types by title keywords

Use this task to quickly reset product types in bulk based on product titles. When run manually, it will query for all products in the shop and for each product with a matched keyword in the title, the task will assign the paired product type to it.

Runs Occurs when a user manually triggers the task. Configuration includes product types and keywords.

15-day free trial – unlimited tasks

Documentation

Use this task to quickly reset product types in bulk based on product titles. When run manually, it will query for all products in the shop and for each product with a matched keyword in the title, the task will assign the paired product type to it.

Configure the product types to set on the left, and the keyword(s) on the right. The task is pre-filled with a sample entry for "Shirts", which can be replaced if not needed.

Notes:
- The task will search for keywords in the order of entry in the task configuration, and it will stop once a match is made.
- If a product title does not contain any of the configured keywords, then that product will be ignored.

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
mechanic/user/trigger
Tasks use subscriptions to sign up for specific kinds of events. Learn more
Options
product types and keywords (keyval, multiline, required)
Code
{% assign product_types_and_keywords = options.product_types_and_keywords__keyval_multiline_required %}

{% comment %}
  -- set preview values for the configuration field that will work with the preview query data
{% endcomment %}

{% if event.preview %}
  {% capture product_types_and_keywords_json %}
    {
      "Shirts": "shirt\nshirts\nt-shirt\nt-shirts\ntee\ntees"
    }
  {% endcapture %}

  {% assign product_types_and_keywords = product_types_and_keywords_json | parse_json %}
{% endif %}

{% assign cursor = nil %}

{% comment %}
  -- query for all products in the shop (if > 25K products, the "100" loop value can be adjusted upward)
{% endcomment %}

{% for n in (1..100) %}
  {% capture query %}
    query {
      products(
        first: 250
        after: {{ cursor | json }}
      ) {
        pageInfo {
          hasNextPage
          endCursor
        }
        nodes {
          id
          title
          productType
        }
      }
    }
  {% endcapture %}

  {% assign result = query | shopify %}

  {% if event.preview %}
    {% capture result_json %}
      {
        "data": {
          "products": {
            "nodes": [
              {
                "id": "gid://shopify/Product/1234567890",
                "title": "Super soft tees",
                "productType": "Shoes"
              }
            ]
          }
        }
      }
    {% endcapture %}

    {% assign result = result_json | parse_json %}
  {% endif %}

  {% comment %}
    -- process each product in this result before querying for more products
  {% endcomment %}

  {% for product in result.data.products.nodes %}
    {% comment %}
      -- use downcase on product title and configured keywords since the "contains" operator is case-sensitive
      -- split on spaces in title to create an array of words to be compared to keywords
    {% endcomment %}

    {% assign product_title_words_downcase
      = product.title
      | downcase
      | split: " "
    %}
    {% assign product_type_to_set = nil %}

    {% for keyval in product_types_and_keywords %}
      {% assign product_type = keyval.first %}
      {% assign keywords = keyval.last | split: newline %}

      {% for keyword in keywords %}
        {% if keyword == blank or keyword == "" %}
          {% comment %}
            -- protect against accidental empty keyword lines in the task config
          {% endcomment %}

          {% continue %}
        {% endif %}

        {% assign keyword_downcase = keyword | downcase %}

        {% if product_title_words_downcase contains keyword_downcase %}
          {% assign product_type_to_set = product_type %}
          {% break %}
        {% endif %}
      {% endfor %}

      {% if product_type_to_set != blank %}
        {% break %}
      {% endif %}
    {% endfor %}

    {% comment %}
      -- set a new product type if a keyword match was made and the product does not already have that type
    {% endcomment %}

    {% if product_type_to_set != blank and product_type_to_set != product.productType %}
      {% action "shopify" %}
        mutation {
          productUpdate(
            product: {
              id: {{ product.id | json }}
              productType: {{ product_type_to_set | json }}
            }
          ) {
            product {
              title
              productType
            }
            userErrors {
              field
              message
            }
          }
        }
      {% endaction %}
    {% endif %}
  {% endfor %}

  {% if result.data.products.pageInfo.hasNextPage %}
    {% assign cursor = result.data.products.pageInfo.endCursor %}
  {% else %}
    {% break %}
  {% endif %}
{% endfor %}
Task code is written in Mechanic Liquid, an extension of open-source Liquid enhanced for automation. Learn more
Defaults
Product types and keywords
{"Shirts"=>"shirt\nshirts\nt-shirt\nt-shirts\ntee\ntees"}