ネストされたポリモーフィック アソシエーションを熱心に読み込もうとしています。解決策が見つからないようです。
これが私のモデル設定です:
class Post
has_many :comments
end
class Comment
belongs_to :ownable, polymorphic: true
end
class User
has_many :comments, as: :ownable
end
そして、これが私がやろうとしていることです:
Post.includes(comments: :ownable).to_a
しかし、それはこのエラーをスローしています:
ActiveRecord::EagerLoadPolymorphicError - Can not eagerly load the polymorphic association :ownable
このネストされたポリモーフィック アソシエーションを熱心に読み込むにはどうすればよいですか?