I’m using the ShopifyAPI gem to look up orders for a store – I know that I can use this to find all the orders for a store:
ShopifyAPI::Order.find(:all)
And this to find all orders created after January 1st:
ShopifyAPI::Order.find(:all, :params => {:created_at_min => "2012-01-01"}
But if I have a list of order IDs like [1009, 1006] – is there a way to retrieve the orders for a store having those IDs, or do I need to look them up individually?
You have to look them up individually.