When loading a collection if you do
cistern.things(page: 1, per_page: 3).each {|thing| thing.call }
the parameters won't get passed through to the all call that the load_records method calls.
It works if you call
cistern.things.all(page: 1, per_page: 3).each {|thing| thing.call }
When loading a collection if you do
the parameters won't get passed through to the
allcall that theload_recordsmethod calls.It works if you call