I have a collection named test something like below {"_id": ObjectId("ciwhciwiwh686ddd") "playerName": "Jon Doe" "Player Team": "Team1" "points": [ {"date": "01-01-2018", "score": 145}, {"date": "01-01-2019", "score": 200} ]
}
Went thru mongoDB official documents and tried following methods
db.test.find({"Player Team": "Team1"}, {"points": {"date":"01-01-2018"}})
I also tried
db.test.find({"Player Team": "Team1"}, {"points.date":"01-01-2018"})
I'm getting Unsupported projection option: