method

data_available?

data_available?()
private

No documentation available.

# File activerecord/lib/active_record/associations/preloader/through_association.rb, line 65
          def data_available?
            owners.all? { |owner| loaded?(owner) } ||
              through_preloaders.all?(&:run?) && source_preloaders.all?(&:run?)
          end