I have three models:
class A < ActiveRecord::Base has_many :bs end class B < ActiveRecord::Base has_one :c belongs_to :a end class C < Activ
Try
render :json => @as.to_json(:include => {:bs => :c})