Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
379 views
in Technique[技术] by (71.8m points)

mongodb - How to lookup into same collection in an array of id?

I have a user schema with

var userSchema = new mongoose.Schema(
{
  username: {
    type: String,
    required: true,
  },
  follows : [{
    type : Schema.Types.ObjectId, 
    ref : "User"
  }],
  followers : [{
    type : Schema.Types.ObjectId, 
    ref : "User"
  }],
});

I have a userId, and then I want to fetch all followers from that useriD. I am new to mongodb.

So a user have a field of followers[], it will containen the userid of all followers. So i want to fetch all fields of the followers.

question from:https://stackoverflow.com/questions/65869425/how-to-lookup-into-same-collection-in-an-array-of-id

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
  • $match your user id condition
  • $lookup to join, pass same collection name in from
User.aggregate([
  { $match: { _id: 1 } },
  {
    $lookup: {
      from: "user", // update to your actual collection name
      localField: "followers",
      foreignField: "_id",
      as: "followers"
    }
  }
])

Playground


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...