Filter sub document array in Mongoose and return only matching elements
I've UserSchema
that looks like this
const userSchema = mongoose.Schema({
email: {
type: String,
trim: true,
required: true,
unique: 1
},
password: {
type: String,
required: true,
minlength: 6
},
token: {
type: String
},
role: {
type: Number,
default: 0 // 0 is student, 1 is admin
},
files: [FileSchema],
internships: [InternshipSchema]
});
As can be seen , files
and internships
are subdocuments. My goal is to filter either of them based on specific input, e.g I would like to filter internships based on country.
However, I'm having a problem of returning only elements that match the search, I can only return all the elements, regardless of search filters being passed in.
I tried to refer querying-subdocument-and-returning-matching-subdocument-only, but could not get it working.
My current code looks like this
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{
$match: {
"internships.country": req.query.country
}
},
{ $unwind: "internships" },
{
$match: {
"internships.country": req.query.country
}
}
);
});
javascript node.js mongodb mongoose
add a comment |
I've UserSchema
that looks like this
const userSchema = mongoose.Schema({
email: {
type: String,
trim: true,
required: true,
unique: 1
},
password: {
type: String,
required: true,
minlength: 6
},
token: {
type: String
},
role: {
type: Number,
default: 0 // 0 is student, 1 is admin
},
files: [FileSchema],
internships: [InternshipSchema]
});
As can be seen , files
and internships
are subdocuments. My goal is to filter either of them based on specific input, e.g I would like to filter internships based on country.
However, I'm having a problem of returning only elements that match the search, I can only return all the elements, regardless of search filters being passed in.
I tried to refer querying-subdocument-and-returning-matching-subdocument-only, but could not get it working.
My current code looks like this
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{
$match: {
"internships.country": req.query.country
}
},
{ $unwind: "internships" },
{
$match: {
"internships.country": req.query.country
}
}
);
});
javascript node.js mongodb mongoose
add a comment |
I've UserSchema
that looks like this
const userSchema = mongoose.Schema({
email: {
type: String,
trim: true,
required: true,
unique: 1
},
password: {
type: String,
required: true,
minlength: 6
},
token: {
type: String
},
role: {
type: Number,
default: 0 // 0 is student, 1 is admin
},
files: [FileSchema],
internships: [InternshipSchema]
});
As can be seen , files
and internships
are subdocuments. My goal is to filter either of them based on specific input, e.g I would like to filter internships based on country.
However, I'm having a problem of returning only elements that match the search, I can only return all the elements, regardless of search filters being passed in.
I tried to refer querying-subdocument-and-returning-matching-subdocument-only, but could not get it working.
My current code looks like this
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{
$match: {
"internships.country": req.query.country
}
},
{ $unwind: "internships" },
{
$match: {
"internships.country": req.query.country
}
}
);
});
javascript node.js mongodb mongoose
I've UserSchema
that looks like this
const userSchema = mongoose.Schema({
email: {
type: String,
trim: true,
required: true,
unique: 1
},
password: {
type: String,
required: true,
minlength: 6
},
token: {
type: String
},
role: {
type: Number,
default: 0 // 0 is student, 1 is admin
},
files: [FileSchema],
internships: [InternshipSchema]
});
As can be seen , files
and internships
are subdocuments. My goal is to filter either of them based on specific input, e.g I would like to filter internships based on country.
However, I'm having a problem of returning only elements that match the search, I can only return all the elements, regardless of search filters being passed in.
I tried to refer querying-subdocument-and-returning-matching-subdocument-only, but could not get it working.
My current code looks like this
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{
$match: {
"internships.country": req.query.country
}
},
{ $unwind: "internships" },
{
$match: {
"internships.country": req.query.country
}
}
);
});
javascript node.js mongodb mongoose
javascript node.js mongodb mongoose
asked Nov 20 '18 at 14:16
SeinfeldSeinfeld
17111
17111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can try my code:
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{ $project: { internships: 1 } },
// after $project
/*
{_id: ObjectId01, internships: [{country: 1}, {country: 2},...]}
....
*/
{ $unwind: '$internships' },
// after $unwind
/*
{_id: ObjectId01, internships: {country: 1}}
{_id: ObjectId01, internships: {country: 2}}
...
*/
{
$match: {
"internships.country": req.query.country
}
}
// final result: [{_id: ObjectId01, internships: {country: 2}}, ...]
).exec((err, internships) => {
if (err) throw err;
console.log(internships);
// [{_id: ObjectId01, internships: {country: 2}}, ...]
// send data to client
res.status(200).json(internships);
});
});
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394985%2ffilter-sub-document-array-in-mongoose-and-return-only-matching-elements%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can try my code:
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{ $project: { internships: 1 } },
// after $project
/*
{_id: ObjectId01, internships: [{country: 1}, {country: 2},...]}
....
*/
{ $unwind: '$internships' },
// after $unwind
/*
{_id: ObjectId01, internships: {country: 1}}
{_id: ObjectId01, internships: {country: 2}}
...
*/
{
$match: {
"internships.country": req.query.country
}
}
// final result: [{_id: ObjectId01, internships: {country: 2}}, ...]
).exec((err, internships) => {
if (err) throw err;
console.log(internships);
// [{_id: ObjectId01, internships: {country: 2}}, ...]
// send data to client
res.status(200).json(internships);
});
});
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
add a comment |
You can try my code:
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{ $project: { internships: 1 } },
// after $project
/*
{_id: ObjectId01, internships: [{country: 1}, {country: 2},...]}
....
*/
{ $unwind: '$internships' },
// after $unwind
/*
{_id: ObjectId01, internships: {country: 1}}
{_id: ObjectId01, internships: {country: 2}}
...
*/
{
$match: {
"internships.country": req.query.country
}
}
// final result: [{_id: ObjectId01, internships: {country: 2}}, ...]
).exec((err, internships) => {
if (err) throw err;
console.log(internships);
// [{_id: ObjectId01, internships: {country: 2}}, ...]
// send data to client
res.status(200).json(internships);
});
});
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
add a comment |
You can try my code:
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{ $project: { internships: 1 } },
// after $project
/*
{_id: ObjectId01, internships: [{country: 1}, {country: 2},...]}
....
*/
{ $unwind: '$internships' },
// after $unwind
/*
{_id: ObjectId01, internships: {country: 1}}
{_id: ObjectId01, internships: {country: 2}}
...
*/
{
$match: {
"internships.country": req.query.country
}
}
// final result: [{_id: ObjectId01, internships: {country: 2}}, ...]
).exec((err, internships) => {
if (err) throw err;
console.log(internships);
// [{_id: ObjectId01, internships: {country: 2}}, ...]
// send data to client
res.status(200).json(internships);
});
});
You can try my code:
app.get("/api/getInternships", (req, res) => {
User.aggregate(
{ $project: { internships: 1 } },
// after $project
/*
{_id: ObjectId01, internships: [{country: 1}, {country: 2},...]}
....
*/
{ $unwind: '$internships' },
// after $unwind
/*
{_id: ObjectId01, internships: {country: 1}}
{_id: ObjectId01, internships: {country: 2}}
...
*/
{
$match: {
"internships.country": req.query.country
}
}
// final result: [{_id: ObjectId01, internships: {country: 2}}, ...]
).exec((err, internships) => {
if (err) throw err;
console.log(internships);
// [{_id: ObjectId01, internships: {country: 2}}, ...]
// send data to client
res.status(200).json(internships);
});
});
edited Nov 21 '18 at 0:49
answered Nov 20 '18 at 15:02
hoangdvhoangdv
1,704610
1,704610
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
add a comment |
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
Do we need any callback or something that will actually return the result ? Cuz if I test it like this with Postman, it has no response. I'm beginner as well, so something that might seem obvious, isn't obvious to me :P
– Seinfeld
Nov 20 '18 at 19:15
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
This works, thanks.
– Seinfeld
Nov 21 '18 at 18:53
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394985%2ffilter-sub-document-array-in-mongoose-and-return-only-matching-elements%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown