in my Post model i try to eager load user (the owner of post), favorite, and comments with authors of each comment :
Post.all.includes(:user, :original => {:favorite, :comments => :author })
but it doesn't work , i get error
syntax error, unexpected ',', expecting => ...(:user, :original => [{:favorite, :comments => :author}... ...
can someone tell me where is the problem ?