Answers for "pymongo find by id"

Go
11

mongo console find by id

db.collection.find({_id:ObjectId('5e208c18d598b806c869ca37')}).pretty()
Posted by: Guest on April-27-2020
0

find record in mongodb with mongodb object id python

from bson.objectid import ObjectId
[i for i in dbm.neo_nodes.find({"_id": ObjectId(obj_id_to_find)})]
Posted by: Guest on July-01-2020

Browse Popular Code Answers by Language