--- 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 metadata: effectiveApiVersion: 2025-07 affectedApi: - displayName: Admin GraphQL API handle: admin-graphql primaryTag: displayName: API handle: api secondaryTag: displayName: Update handle: update indicatesActionRequired: false createdAt: '2025-05-12T10:38:13-04:00' postedAt: '2025-07-01T12:00:00-04:00' updatedAt: '2025-05-12T10:42:50-04:00' effectiveAt: '2025-07-01T12:00:00-04:00' --- 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`.