A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi,
While we try to fetch the order details via API we are receiving only a limited no. of recent orders data. We can't able to find the past orders. How to rectify this? How to fetch past 6 months order data? And is it possible to fetch the data and store in our database?
Solved! Go to the solution
This is an accepted solution.
Switch to Rest Api and add limit=250 to retrieve the orders, then make paginated requests to get next page orders. Or use bulk operations.
Hi,
You need the read_all_orders scope activated for your app to retrieve older orders.
Yes, I requested for that and Shopify has granted access for that. Even though I am receiving the recent orders only. Is there any way to increase the 1000 limit?
No, Right now I am fetching only 40 orders using Shopify Ql. If I increase this limit it says the query limit has been exceeded.
This is an accepted solution.
Switch to Rest Api and add limit=250 to retrieve the orders, then make paginated requests to get next page orders. Or use bulk operations.