Hi,
I am trying to pull a list of paid orders in a 1 hour period. Using REST, I receive no sales. When I use graph QL, I get several hundred sales. Is this query correct?
query ($first: Int, $after: String) {
orders(first: $first, after: $after, query: “financial_status:paid AND updated_at:>=2025-03-03T11:00:00Z AND status:any AND updated_at:<=2025-03-03T12:00:00Z AND limit:250”)
Here is my REST query that returns 0 sales:
limit=250&updated_at_min=2025-03-03T11:00:00&updated_at_max=2025-03-03T12:00:00&financial_status=paid&status=any