Skip to content

Instantly share code, notes, and snippets.

@j3ck
Created December 7, 2020 16:43
Show Gist options
  • Save j3ck/d105bdbe1db105db3d76f734cbf2447c to your computer and use it in GitHub Desktop.
Save j3ck/d105bdbe1db105db3d76f734cbf2447c to your computer and use it in GitHub Desktop.
def export
favorites = Favorite.all
@products = Product.where(id: favorites.map(&:product_id).uniq)
count = favorites.group_by(&:product_id).map do |product_id, favorites|
[@products.find { |product| product.id == product_id }, favorites.length]
end
@favorite_count = count.sort_by { |arr| arr.last }.reverse.to_h
end
@j3ck
Copy link
Author

j3ck commented Dec 7, 2020

SQL:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment