How can I get the total number of orders shipped on two specific dates using GraphQL API.
Hello, You would use the shipments query leveraging the date_from and date_to filters. If the days are subsequent you can select both within the date range, otherwise you will need to split it into two separate calls. Depending on your volume a single day may contain too many shipments to retrieve within a single query. In this case I would recommend using pagination functionality per our guidance here: GraphQL Primer – Developer Resources | ShipHero
1 Like
This topic was automatically closed 4 days after the last reply. New replies are no longer allowed.