Fulfillment object
How to access it
Use
{% for fulfillment in order.fulfillments %}
in tasks responding to shopify/orders events
What it contains
The related order object:
{{ fulfillment.order }}
The related location object:
{{ fulfillment.location }}
An array of line item objects:
{{ fulfillment.line_items }}
Last updated