$replaceRoot in mongodb aggregation
up vote
1
down vote
favorite
I have a collection like this:
{
"_id" : ObjectId("5bd1686ba64b9206349284db"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b2"
}
]
}
{
"_id" : ObjectId("5bd16ab8a64b92068d485054"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b3"
}
]
}
The following structure is what I want:
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b3"
}
I tried this aggregate operations:
db.getCollection('t_system_code').aggregate([
{"$unwind":"$codeInstances"},
{$match:{"codeInstances.name":"b","type" : "Package"}},
{"$project":{"codeInstances":1,"_id":0}}
]);
But thatundefineds not the structure I want:
{
"codeInstances" : {
"name" : "b",
"description" : "b1"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b2"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b3"
}
}
Help. Thank you.
mongodb mongodb-query aggregation-framework
add a comment |
up vote
1
down vote
favorite
I have a collection like this:
{
"_id" : ObjectId("5bd1686ba64b9206349284db"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b2"
}
]
}
{
"_id" : ObjectId("5bd16ab8a64b92068d485054"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b3"
}
]
}
The following structure is what I want:
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b3"
}
I tried this aggregate operations:
db.getCollection('t_system_code').aggregate([
{"$unwind":"$codeInstances"},
{$match:{"codeInstances.name":"b","type" : "Package"}},
{"$project":{"codeInstances":1,"_id":0}}
]);
But thatundefineds not the structure I want:
{
"codeInstances" : {
"name" : "b",
"description" : "b1"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b2"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b3"
}
}
Help. Thank you.
mongodb mongodb-query aggregation-framework
make corrections:The following structure is what I want: { "name" : "b", "description" : "b1" }, { "name" : "b", "description" : "b2" }, { "name" : "b", "description" : "b3" }
– 赵彬杰
Oct 30 at 7:35
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a collection like this:
{
"_id" : ObjectId("5bd1686ba64b9206349284db"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b2"
}
]
}
{
"_id" : ObjectId("5bd16ab8a64b92068d485054"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b3"
}
]
}
The following structure is what I want:
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b3"
}
I tried this aggregate operations:
db.getCollection('t_system_code').aggregate([
{"$unwind":"$codeInstances"},
{$match:{"codeInstances.name":"b","type" : "Package"}},
{"$project":{"codeInstances":1,"_id":0}}
]);
But thatundefineds not the structure I want:
{
"codeInstances" : {
"name" : "b",
"description" : "b1"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b2"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b3"
}
}
Help. Thank you.
mongodb mongodb-query aggregation-framework
I have a collection like this:
{
"_id" : ObjectId("5bd1686ba64b9206349284db"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b2"
}
]
}
{
"_id" : ObjectId("5bd16ab8a64b92068d485054"),
"type" : "Package",
"codeInstances" : [
{
"name" : "a",
"description" : "a"
},
{
"name" : "b",
"description" : "b3"
}
]
}
The following structure is what I want:
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b1"
},
{
"name" : "b",
"description" : "b3"
}
I tried this aggregate operations:
db.getCollection('t_system_code').aggregate([
{"$unwind":"$codeInstances"},
{$match:{"codeInstances.name":"b","type" : "Package"}},
{"$project":{"codeInstances":1,"_id":0}}
]);
But thatundefineds not the structure I want:
{
"codeInstances" : {
"name" : "b",
"description" : "b1"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b2"
}
}
{
"codeInstances" : {
"name" : "b",
"description" : "b3"
}
}
Help. Thank you.
mongodb mongodb-query aggregation-framework
mongodb mongodb-query aggregation-framework
edited Nov 20 at 17:36
Anthony Winzlet
13k41139
13k41139
asked Oct 30 at 7:32
赵彬杰
83
83
make corrections:The following structure is what I want: { "name" : "b", "description" : "b1" }, { "name" : "b", "description" : "b2" }, { "name" : "b", "description" : "b3" }
– 赵彬杰
Oct 30 at 7:35
add a comment |
make corrections:The following structure is what I want: { "name" : "b", "description" : "b1" }, { "name" : "b", "description" : "b2" }, { "name" : "b", "description" : "b3" }
– 赵彬杰
Oct 30 at 7:35
make corrections:The following structure is what I want: { "name" : "b", "description" : "b1" }, { "name" : "b", "description" : "b2" }, { "name" : "b", "description" : "b3" }
– 赵彬杰
Oct 30 at 7:35
make corrections:The following structure is what I want: { "name" : "b", "description" : "b1" }, { "name" : "b", "description" : "b2" }, { "name" : "b", "description" : "b3" }
– 赵彬杰
Oct 30 at 7:35
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
You can try below aggregation using $replaceRoot
db.collection.aggregate([
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$unwind": "$codeInstances" },
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$replaceRoot": { "newRoot": "$codeInstances" }}
])
add a comment |
up vote
1
down vote
You just need to project for name
and description
instead of whole codeInstances
. Check below
db.collection.aggregate([
{ $unwind: "$codeInstances" },
{ $match: { "codeInstances.name": "b", "type": "Package" }},
{ $project: {
"name": "$codeInstances.name",
"description": "$codeInstances.description",
"_id": 0
}}
])
Output:
[
{ "description": "b1", "name": "b" },
{ "description": "b2", "name": "b" },
{ "description": "b3", "name": "b" }
]
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',
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%2f53059357%2freplaceroot-in-mongodb-aggregation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can try below aggregation using $replaceRoot
db.collection.aggregate([
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$unwind": "$codeInstances" },
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$replaceRoot": { "newRoot": "$codeInstances" }}
])
add a comment |
up vote
1
down vote
accepted
You can try below aggregation using $replaceRoot
db.collection.aggregate([
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$unwind": "$codeInstances" },
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$replaceRoot": { "newRoot": "$codeInstances" }}
])
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can try below aggregation using $replaceRoot
db.collection.aggregate([
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$unwind": "$codeInstances" },
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$replaceRoot": { "newRoot": "$codeInstances" }}
])
You can try below aggregation using $replaceRoot
db.collection.aggregate([
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$unwind": "$codeInstances" },
{ "$match": { "codeInstances.name": "b", "type": "Package" }},
{ "$replaceRoot": { "newRoot": "$codeInstances" }}
])
answered Oct 30 at 8:42
Anthony Winzlet
13k41139
13k41139
add a comment |
add a comment |
up vote
1
down vote
You just need to project for name
and description
instead of whole codeInstances
. Check below
db.collection.aggregate([
{ $unwind: "$codeInstances" },
{ $match: { "codeInstances.name": "b", "type": "Package" }},
{ $project: {
"name": "$codeInstances.name",
"description": "$codeInstances.description",
"_id": 0
}}
])
Output:
[
{ "description": "b1", "name": "b" },
{ "description": "b2", "name": "b" },
{ "description": "b3", "name": "b" }
]
add a comment |
up vote
1
down vote
You just need to project for name
and description
instead of whole codeInstances
. Check below
db.collection.aggregate([
{ $unwind: "$codeInstances" },
{ $match: { "codeInstances.name": "b", "type": "Package" }},
{ $project: {
"name": "$codeInstances.name",
"description": "$codeInstances.description",
"_id": 0
}}
])
Output:
[
{ "description": "b1", "name": "b" },
{ "description": "b2", "name": "b" },
{ "description": "b3", "name": "b" }
]
add a comment |
up vote
1
down vote
up vote
1
down vote
You just need to project for name
and description
instead of whole codeInstances
. Check below
db.collection.aggregate([
{ $unwind: "$codeInstances" },
{ $match: { "codeInstances.name": "b", "type": "Package" }},
{ $project: {
"name": "$codeInstances.name",
"description": "$codeInstances.description",
"_id": 0
}}
])
Output:
[
{ "description": "b1", "name": "b" },
{ "description": "b2", "name": "b" },
{ "description": "b3", "name": "b" }
]
You just need to project for name
and description
instead of whole codeInstances
. Check below
db.collection.aggregate([
{ $unwind: "$codeInstances" },
{ $match: { "codeInstances.name": "b", "type": "Package" }},
{ $project: {
"name": "$codeInstances.name",
"description": "$codeInstances.description",
"_id": 0
}}
])
Output:
[
{ "description": "b1", "name": "b" },
{ "description": "b2", "name": "b" },
{ "description": "b3", "name": "b" }
]
edited Oct 30 at 7:42
answered Oct 30 at 7:36
Hardik Shah
1,6532723
1,6532723
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53059357%2freplaceroot-in-mongodb-aggregation%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
make corrections:The following structure is what I want: { "name" : "b", "description" : "b1" }, { "name" : "b", "description" : "b2" }, { "name" : "b", "description" : "b3" }
– 赵彬杰
Oct 30 at 7:35