π«Product object
These Shopify REST-backed Liquid objects are legacy. The product and variant Liquid objects no longer work, and Shopify is phasing out the REST Admin API that these objects depend on. Use GraphQL for new work; see the Shopify REST Admin API notice and migration guides.
How to access it
Use
{{ product }}in tasks responding to shopify/products eventsLook 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 Product resource in the Shopify REST Admin API (warning: Shopify delivers product.tags as a comma-delimited string, not an array of strings!)
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 }}
Last updated
Was this helpful?