Guest User

Untitled

a guest
Sep 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ShopifyAPI::Customer.find_all do |customer|
  2. # do something with the customer
  3. end
  4.  
  5. ShopifyAPI::Order.find_all(:status => :any) do |order|
  6. # do something with the order
  7. end
  8.  
  9. ShopifyAPI::Product.find_all(:limit => 250) do |order|
  10. # do something with the product
  11. end
Add Comment
Please, Sign In to add comment