Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ruby on rails how to get latest records from has many relationship

I am new to Ruby on Rails. I have a problem- how to get only latest records from has many relationship in model. My code is like this:

class User < ActiveRecord::Base 
  has_many :books
end

class Book < ActiveRecord::Base
  belongs_to :user

  scope :rating, -> { where(rating: 5) }
end

What I would like to achieve is: I'd like to get all latest (last) book for each user and than filter this books using scope rating. I can do this using for each loop (Looping through User.books and get book.last)- but this is very inefficient because I have a lot of data. Do you have any ideas how I can do this? maybe some kind of scope chaining with each other?

like image 757
Joanna Avatar asked Nov 01 '22 07:11

Joanna


1 Answers

You can do this if you want to avoid writing SQL:

class Book < ActiveRecord::Base
  scope :latest, -> do
    book_ids_hash = Book.group(:user_id).maximum(:id)
    book_ids = book_ids_hash.values
    where(id: book_ids)
  end
end

Then all you have to do is:

Book.rating.latest
like image 53
SHS Avatar answered Nov 15 '22 06:11

SHS