For example, say I have an Author class and a Book class. How do I write a scope for books that are the most recently created records belonging to their author?
I know that a scope for the most recently created books is
scope :most_recent, -> { order(created_at: :desc).limit(4) }
However, that returns the most recently created books by any author.
I'm looking for something like:
author 1: Plato
id | title | created_at
1 | Apology | 23 Jul 2018
2 | Phaedo | 24 Jul 2018
3 | Republic | 25 Jul 2018
author 2: Seneca
id | title | created_at
4 | Oedipus | 3 May 2018
5 | Agamemnon | 4 May 2018
6 | Hercules | 5 May 2018
to return Hercules, Agamemnon, Republic, and Phaedo
Write the above scope in your Book Model. To query for most recent books by any author call:
author_id = Id of author/Author Model object for which you want the most recent books.