A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi,
I'm working on production forecasting and would like to loop through and total daily fulfillments by SKU. Right now I'm doing so by querying Orders on created_at and sku, then accessing the lineItems and fulfillments arrays. However, because the time between order and fulfillment is unknown in advance and could be large in edge cases, this requires an overly expansive date range in the Orders query to capture fulfillments for a single day.
Is it possible to query fulfillments more directly by sku and created_at? I don't see that ability in fulfillmentOrders, for example, but perhaps it exists elsewhere?
Thank you!