Open kahmra opened 10 months ago
I have reviewed your question and have not used it before. I am currently unable to answer you,
Do you know the answer to my question?
How to obtain all orders for a store with over 250 orders? Currently, I can only obtain 250 orders
Currently
$fulfilledOrders = $ShopifyConnection->fulfilledOrders($sinceId,250);
foreach ($fulfilledOrders as $order) {
$shopifyBatchProcessData->batchProcess("Orders",$order,"order");
}
现在
$fulfilledOrders = $ShopifyConnection->fulfilledOrders($sinceId,250); foreach ($fulfilledOrders as $order) { $shopifyBatchProcessData->batchProcess("Orders",$order,"order"); }
Thank you.
@kahmra Do you know how to obtain the required parameters for the next page page_info The value of info?
! I'm trying to get all the fulfilled orders, for that I created this function:
If I pass 'closed' to the status variable, it retrieves both canceled and fulfilled orders, but I need only the shipped orders. For that, I created this second function:
However, this function returns an empty array
Array ()
despite having more than 1000. What could be my mistake? Thank you!