The fulfillment object
How to access it
- Use
{% for fulfillment in order.fulfillments %}
in tasks responding to shopify/orders events
What it contains
- Every property from the Shopify API
- The related order object:
{{ fulfillment.order }}
- The related location object:
{{ fulfillment.location }}
- An array of line item objects:
{{ fulfillment.line_items }}