--- title: Add created/updated at time based filters for an order's fulfillments - Shopify developer changelog description: Shopify’s developer changelog documents all changes to Shopify’s platform. Find the latest news and learn about new platform opportunities. source_url: html: https://shopify.dev/changelog/add-createdupdated-at-time-based-filters-for-an-orders-fulfillments md: https://shopify.dev/changelog/add-createdupdated-at-time-based-filters-for-an-orders-fulfillments.md --- [Back to Developer changelog](https://shopify.dev/changelog) July 1, 2025 Tags: * Admin GraphQL API * 2025-07 # Add created/updated at time based filters for an order's fulfillments As of API version `2025-07` you can now narrow the list of fulfillments returned by [`Order.fulfillments`](https://shopify.dev/docs/api/admin-graphql/unstable/queries/order#returns-Order.fields.fulfillments) with an optional query argument that targets created\_at and/or updated\_at fields. The argument uses the same search syntax already familiar from other Admin API endpoints, for example: ``` fulfillments(query: "created_at:'2025-05-07T08:37:00Z'") fulfillments(query: "created_at:>='2025-05-07T00:00:00Z' updated_at:<'2025-05-09T00:00:00Z'") ``` The field still returns a simple array—no pagination cursor needed—and behaves exactly as before if you omit `query`.