Model.find is not working with mongoid

638 Views Asked by At

I am not able find the record using Model.find(id).

Food.find('548210e8d5a81037af06b2d6') => Mongoid::Errors::DocumentNotFound

But when I try find the same record using column name , I will return same record.

 Food.where({name:"Aloo Matar" }).first
 => #<Food _id: 548210e8d5a81037af06b2d6, rawOrPrepared: "P", name: "Aloo Matar", tags: "vegetable", alternateNames: "potatoes">

For my case, find works differently based on string. Please see the below code.

  Food.where({_id: "zyCMnbTPENeXkhawT" })
 => #<Mongoid::Criteria
  selector: {"_id"=>"zyCMnbTPENeXkhawT"}
  options:  {}
  class:    Food
  embedded: false>

2.2.1 :017 > Food.where({_id: '548210e8d5a81037af06b2d6' })
 => #<Mongoid::Criteria
  selector: {"_id"=>BSON::ObjectId('548210e8d5a81037af06b2d6')}
  options:  {}
  class:    Food
  embedded: false>

But first code returns the object while second code raise the exception.

Please help me on this.

Thanks, Hare

1

There are 1 best solutions below

0
On

Your problem has happened because the document with _id equal to 548210e8d5a81037af06b2d6 was saved before you changed your model saying the _id field should have string type.

I suppose you inserted something like the below code onto your model after inserting that document on DB. Right?

field :_id, type: String, overwrite: true

So... what is happening with document with id 548210e8d5a81037af06b2d6?

Simple. The document was saved with default mongodb _id type - which is ObjectId.

Now (after defining _id type as string) whenever you query DB with 548210e8d5a81037af06b2d6, it will try to find a document with id equal to 548210e8d5a81037af06b2d6 but it won't find because it was stored as ObjectId('548210e8d5a81037af06b2d6').

If you remove field :_id, type: String, overwrite: true from your model, you'll see that the document 548210e8d5a81037af06b2d6 will be found again, whilest zyCMnbTPENeXkhawT won't.

Thus to solve your problem you have to convert every id on mongodb to the same type.