Mongodb – How to return nested document with Mongoose?
If I have this collection [ { "_id": "637cbf94b4741277c3b53c6c", "text": "outter", "username": "test1", "address": [ { "text": "inner", "username": "test2", "_id": "637cbf94b4741277c3b53c6e" } ], "__v": 0 } ] and would like to search for the nested document by _id and…