Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Let say I have an array with some document _id's:

const ids = ["5ffd5eb822084969b4dc9f74","5ffd5eb822084969b4dc9f74"]

As you can see, there are duplicated, so I want both documents back from Mongo. But with the Document.find({_id: {$in: ids}}) query and the $all option only one document is returned.

Is there a way to get the transaction twice (in this case) back from Mongo?


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

1 Answer

You can use a for loop iterate over the array of ids and and use Document.find(id) multiple times.

const ids = ["5ffd5eb822084969b4dc9f74","5ffd5eb822084969b4dc9f74"];
const result = [];
// Loop through each element
ids.forEach(async(id) => {
    const foundResult = await Document.find({_id: id});
    result.push(foundResult);
})

Then you can use the result array.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...