unepwcmc/SAPI

View on GitHub
app/services/checklist/history_fetcher.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Checklist::HistoryFetcher
  def initialize(relation)
    @relation = relation
    @limit = 1000
    @offset = 0
  end

  def next
    results = @relation.limit(@limit).offset(@offset)
    @offset += @limit
    results
  end
end