From top to bottom I have the belongs_to relationship between my table , and well has_many from the other direction.
ReportTarget
Report
Manager
Organization
I want to do an eager load on these. I think I can go this deep but I am not aware of the syntax if want to go deeper, which is what I need. I want to go all the way from Organization to ReportTarget
@blah = Organization.includes([managers: :reports]).find(params[:id])