I have the following models:
class FavoriteDirectorSet < ActiveRecord::Base
has_many :links
has_many :directors, through: :links
end
class Link < ActiveRecord::Base
belongs_to :favorite_director_set
belongs_to :director
end
class Director < ActiveRecord::Base
has_many :links
has_many :favorite_director_sets, through: :links
has_many :movies
end
class Movie < ActiveRecord::Base
belongs_to :director
end
I have been getting into building queries by chaining scopes together but I'm not clear how to break this one down. How do I create an Active Record Relation object of Movies which match a given FavoriteDirectorSet id?
UPDATE
I have two solutions working ("favourite_director" abbreviated to fd):
1) @rubyman option 1:
fd_sets = FDSet.find(:fd_set_id)
res = Movie.where('director_id IN (?)', fd_sets.directors.map(&:id))
2) @rubyman option 2:
res = Movie.joins(:director=>[:links=>:fd_set]).
where("fd_sets.id = ?", :fd_set_id)