Search code examples
phpmongodbphpstormrobo3t

How to search for document by id in Mongo Explorer plugin of php storm


I use both robomongo and rockmongo as clients for mongo dbs.. suppose I got a collection called Drivers, then searching by id is quite easy:

db.Driver.find({_id:ObjectId('51118447b38639a960000002')})

I recently installed a mongo plugin for Php Storm, however I couldn't figure out how to search for a document by id.. the above query fails:

enter image description here

Ideas?


Solution

  • As per the support forum, you should query as:

    {_id: {$oid: '51118447b38639a960000002'}}