db_contacts collection_contact
{
"_id" : ObjectId("5ac5d63cf0b6c601a8978b56"),
"contact_type" : "Individual",
"name" : "MyShipper",
} ...
db_shipments collection_fclshipments
"shipper_info" : {
"shipper" : ObjectId("5ac5d63cf0b6c601a8978b56"),
"same_as_billing_address" : true
} ...
I want to join two collections from two different databases. I have tried $lookup method. But it is not possible. And also tried db.getSibling / db.getSiblingDB. Please suggest any proper way to handle this situation. Thank you.