Getting actual array of results using Mongoid

Newy picture Newy · Jul 7, 2011 · Viewed 7.4k times · Source

With a regular ActiveRecord/SQL setup in Rails, in console when I execute commands *.where, *.all etc., I get back the actual array of record items. However, after switching to Mongoid, I instead get back a criteria. How do I get the actual results?

This is what I get now...

ruby-1.9.2-p180 :001 > App.all
 => #<Mongoid::Criteria
  selector: {},
  options:  {},
  class:    App,
  embedded: false>

Answer

theTRON picture theTRON · Jul 7, 2011

When you query a model in Mongoid, it returns a criteria object (as you've stated), it doesn't actually run the query until you request data from the criteria.

All you need to do is iterate over the results, using each or map or any of the array methods, like this:

App.all.each do |app|
  puts app.name
end

Alternatively, if you just want the array, you can just call to_a on the criteria:

App.all.to_a