Hellom, when I send request to get all fulfillments to the order and filter them by created_at_max it work okey. But if I add limit and go though the pagination using page_info it won’t filter my fulfillments by created_at_max, it will return all fulfillments.
Using created_at_min works as expected in all cases.
What was the solution ? I am facing the same issue,
First call for /admin/api/2021-10/orders.json
processed_at_min=“2022-07-10T00:00:00-08:00”
processed_at_max= “2022-07-10T11:59:59-08:00”
After that for remain pages In a while loop I am passing page_info for pagination.
However in page_info response the API is not honoring processed_at_min or max date and returning all the orders from previous dates.
I need orders processed only for a specific date.
Can you please help ?