No content to show
User Activity
12-06-2023
Hi Not getting any error, the above query returns top 250 orders and after that it does not return the next 250 orders. Yes there are thousands of orders in store. I also tried to check this variable "ShopifyAPI::Order.next_page?" and it returns fal...
12-01-2023
LIMIT=250
def fetch_shopify_orders(status="paid")
ShopifyAPI::Order.all(session: @session, financial_status: status, updated_at_min: Time.current.to_date - 2.days, limit: LIMIT)
end
def fetch_next_shopify_orders
ShopifyAPI::Order.all(session: @se...