# File lib/reactive_resource/association/belongs_to_association.rb, line 28
      def associated_attributes
        attributes = [attribute]
        if associated_class
          attributes += associated_class.belongs_to_associations.map(&:attribute)
        end
        attributes.uniq
      end