# File lib/reactive_resource/base.rb, line 286
    def self.belongs_to_with_parents
      @belongs_to_with_parents ||= begin
        ret = belongs_to_associations.map(&:associated_attributes)
        ret += parents.map(&:belongs_to_with_parents)
        ret.flatten.uniq
      end
    end