A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
We are using above shopify admin API to retrieve fulfillment_orders that are requested but we have a case that we only want to fetch the orders that has requested recently not the older one, the API does not contain any parameter to filter records based on updated_at, we can use parameter 'since_id' but in our case fulfillment_order request is not sequential therefore parameter 'since_id' not working
Even if API does not contain parameters to filter records other than status, e.g. updated_at time then do we have any pagination link in this API how can we fetch more than 250 fulfillment orders.
We have tested the API does not contain any pagination Link any other way to fetch only new requested fulfillment order using parameters or pagination ??