Please how can I make this work on mongoDB.
For each item in an array, fetch data which contains the item from another collection.
For example:
"users" : [{
"name": "John doe",
"age": 51
},
{
"name": "Jake kim",
"age": 50
},
{
"name": "Jim son",
"age": 51
}]
On another collection I have
"age": [50,51,52,53,54]
Now my desire result is
"50" : [{
"name": "Jake kim",
"age": 50
}],
"51" : [{
"name": "John doe",
"age": 51
},
{
"name": "Jim son",
"age": 51
}]
2
Answers
You can do this. Get the array of users.
Get the array of ages
Then you can map through the array of ages, returning an object that has the user that has the same age, here is the algorithm.
If you print out the mapped result. This is what it will look like, For the ages that we couldn’t find their users, they just have an undefined value.
I don’t think you’ll need the
age
data in your case. However I’ve provided the both versions which one use the age list but other does not. Please find them below.