I am using following endpoint with created_at_min, created_at_max and status as param.
I need to fetch orders between hours range such as 06PM-7PM
https://my.store.myshopify.com/admin/api/2023-10/orders.json?created_at_min=2023-11-23T06:00:00+11:00&created_at_max=2023-11-23T07:00:00+11:00&status=any
this returns
{
"orders": []
}
but when this endpoint is used with only one param from created_at_max or created_at_min it does return data.
Is there something wrong with this endpoint when using both as param.
Note I do have orders between this timestamp
Thanks.
