I need to find all of my products that have more than one image attached. I have around 100k products. Individually checking each one is going to take around 3 weeks. If I could just filter them all into one collection I can just edit them from there. I should be able to use product.images.size to find the number of images attached to a product. Then I could just use a “greater than 1” to filter out all of the products that have one image.
If this isn’t possible I am open to just pasting all of the handles into some hidden page and I can work with them from there using something like:
LOOP THROUGH ALL PRODUCTS
{% if product.images.size > 1 %}
SAVE SKU/Handle
{% endif %}
LOOP