Last updated
Was this helpful?
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.
Use {{ order.line_items[n].variant.inventory_levels[n] }} in tasks responding to shopify/orders events
Use {{ product.variants[n].inventory_levels[n] }} in tasks responding to shopify/products events
The related inventory item object: {{ inventory_level.inventory_item }}
The related variant object: {{ inventory_level.variant }}
The related location object: {{ inventory_level.location }}
Last updated
Was this helpful?
Was this helpful?