transaction
collection 에 없는 user
colleciton 가져오기db.user.aggregate([
{
"$lookup": {
"from": "transaction",
"localField": "_id",
"foreignField": "user",
"as": "trans"
}
},
{
"$match": {
"trans.user": {
"$exists": false
}
}
}
])