Jika Anda menggunakan Mongoid 3, ia menyediakan akses mudah ke driver MongoDB-nya:Moped. Berikut ini contoh mengakses beberapa data mentah tanpa menggunakan Model untuk mengakses data:
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