I want to do a $lookup where the localField is a String representation of an ObjectId and the foreign field is an actual ObjectId.
Any idea if this is possible with MongoDB 3.2 if items is a String value but _id is an ObjectId?
[{
"$lookup": {
"from": "videos",
"localField": "items",
"foreignField": "_id",
"as": "appendedItems"
}
}]