Jeśli używasz Mongoid 3, zapewnia łatwy dostęp do sterownika MongoDB:Moped. Oto przykład dostępu do niektórych surowych danych bez użycia modeli w celu uzyskania dostępu do danych:
db = Mongoid::Sessions.default
# inserting a new document
collection = db[:collection_name]
collection.insert(name: 'my new document')
# finding a document
doc = collection.find(name: 'my new document').first
# iterating over all documents in a collection
collection.find.each do |document|
puts document.inspect
end