Reputation: 167
I am using Nodejs and MongoDB with expressjs and mongoose library & How can I get mutual between another user. Here are the Schema I use.
const UsersSchema = new mongoose.Schema({
username: { type: String },
email: { type: String },
date_created: { type: Date },
last_modified: { type: Date }
});
const FollowSchema = new Schema({
follower: { type: Schema.Types.ObjectId, ref: 'User', required: true },
following: { type: Schema.Types.ObjectId, ref: 'User', required: true },
date_created: { type: Date },
last_modified: { type: Date }
});
How do I Query Mongo?
Upvotes: 1
Views: 97
Reputation: 46491
You can use below aggregation
db.users.aggregate([
{ "$match": { "_id": 2 }},
{ "$lookup": {
"from": "follows",
"let": { "id": "$_id" },
"pipeline": [
{ "$facet": {
"userFollows": [
{ "$match": { "$expr": { "$eq": ["$follower", "$$id"] }}}
],
"myFollows": [
{ "$match": { "$expr": { "$eq": ["$follower", 1] }}}
]
}},
{ "$project": {
"matchedFollowed": {
"$setIntersection": ["$userFollows.followed", "$myFollows.followed"]
}
}},
{ "$unwind": "$matchedFollowed" }
],
"as": "user"
}},
{ "$lookup": {
"from": "follows",
"let": { "ids": "$user.matchedFollowed" },
"pipeline": [
{ "$match": { "$expr": { "$in": ["$follower", "$$ids"] }}}
],
"as": "mutualConnections"
}}
])
Upvotes: 2