The product object
How to access it
- Use
{{ product }}
in tasks responding to shopify/products events - Look up specific products by their ID, using
{{ shop.products[1234567890] }}
- List published products using
{{ shop.products.published }}
- List unpublished products using
{{ shop.products.unpublished }}
What it contains
- Every property from the Shopify API
- An array of related variant objects:
{{ product.variants }}
- An array of related collection objects:
{{ product.collections }}
- An array of related product image objects:
{{ product.images }}
- The related metafields object:
{{ product.metafields }}