Spring mongodb unwind on nested field2019 Community Moderator ElectionMongoDB vs. CassandraHow to query MongoDB with “like”?Update MongoDB field using value of another fieldHow do I drop a MongoDB database from the command line?MongoDb Pipeline Aggregation $unwind sub sub documentsUse $multiply on nested fields in aggregation in MongoDBMongoDB - Rewind an $unwind nested array after $lookup using $groupMongoDB 'unwind' nested objectsCannot sort arrays using unwind or reduce mongodb aggregation piplinehow to count the size of an array object and unwind it in MongoDB
How Could an Airship Be Repaired Mid-Flight
Happy pi day, everyone!
Brexit - No Deal Rejection
Identifying the interval from A♭ to D♯
What is the significance behind "40 days" that often appears in the Bible?
How do I hide Chekhov's Gun?
Why do passenger jet manufacturers design their planes with stall prevention systems?
Min function accepting varying number of arguments in C++17
Most cost effective thermostat setting: consistent temperature vs. lowest temperature possible
how to write formula in word in latex
My adviser wants to be the first author
Do I need life insurance if I can cover my own funeral costs?
Does Mathematica reuse previous computations?
It's a yearly task, alright
Combining an idiom with a metonymy
Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?
SOQL: Populate a Literal List in WHERE IN Clause
What options are left, if Britain cannot decide?
Instead of Universal Basic Income, why not Universal Basic NEEDS?
Have researchers managed to "reverse time"? If so, what does that mean for physics?
How to deal with taxi scam when on vacation?
Do I need to be arrogant to get ahead?
How to explain that I do not want to visit a country due to personal safety concern?
A Cautionary Suggestion
Spring mongodb unwind on nested field
2019 Community Moderator ElectionMongoDB vs. CassandraHow to query MongoDB with “like”?Update MongoDB field using value of another fieldHow do I drop a MongoDB database from the command line?MongoDb Pipeline Aggregation $unwind sub sub documentsUse $multiply on nested fields in aggregation in MongoDBMongoDB - Rewind an $unwind nested array after $lookup using $groupMongoDB 'unwind' nested objectsCannot sort arrays using unwind or reduce mongodb aggregation piplinehow to count the size of an array object and unwind it in MongoDB
I am trying to run aggregation query where trying to unwind the array which is nested under the key customFields.
Structure is like this
"note" :
"customFields" :
"externalAttendees" : [
"email" : "someemail@domain.com",
"epp" : null
,
"email" : "anotheremail@domain.com",
"epp" : null
]
customField is Map of type string, Object. When I am trying to unwind note.customFields.externalAttendees then getting error
No property externalAttendees found for type Object! Traversed path: Activity.note.customFields.
On the other side if I unwind on the field which is an array of concrete object like List where User class have email and epp as instance variable then I am not getting any exception.
Is there any way to unwind on dynamic keys which are not part of bean but available in document.
I am using springMongoData db aggregation.
mongodb aggregation-framework spring-mongodb spring-mongo
add a comment |
I am trying to run aggregation query where trying to unwind the array which is nested under the key customFields.
Structure is like this
"note" :
"customFields" :
"externalAttendees" : [
"email" : "someemail@domain.com",
"epp" : null
,
"email" : "anotheremail@domain.com",
"epp" : null
]
customField is Map of type string, Object. When I am trying to unwind note.customFields.externalAttendees then getting error
No property externalAttendees found for type Object! Traversed path: Activity.note.customFields.
On the other side if I unwind on the field which is an array of concrete object like List where User class have email and epp as instance variable then I am not getting any exception.
Is there any way to unwind on dynamic keys which are not part of bean but available in document.
I am using springMongoData db aggregation.
mongodb aggregation-framework spring-mongodb spring-mongo
add a comment |
I am trying to run aggregation query where trying to unwind the array which is nested under the key customFields.
Structure is like this
"note" :
"customFields" :
"externalAttendees" : [
"email" : "someemail@domain.com",
"epp" : null
,
"email" : "anotheremail@domain.com",
"epp" : null
]
customField is Map of type string, Object. When I am trying to unwind note.customFields.externalAttendees then getting error
No property externalAttendees found for type Object! Traversed path: Activity.note.customFields.
On the other side if I unwind on the field which is an array of concrete object like List where User class have email and epp as instance variable then I am not getting any exception.
Is there any way to unwind on dynamic keys which are not part of bean but available in document.
I am using springMongoData db aggregation.
mongodb aggregation-framework spring-mongodb spring-mongo
I am trying to run aggregation query where trying to unwind the array which is nested under the key customFields.
Structure is like this
"note" :
"customFields" :
"externalAttendees" : [
"email" : "someemail@domain.com",
"epp" : null
,
"email" : "anotheremail@domain.com",
"epp" : null
]
customField is Map of type string, Object. When I am trying to unwind note.customFields.externalAttendees then getting error
No property externalAttendees found for type Object! Traversed path: Activity.note.customFields.
On the other side if I unwind on the field which is an array of concrete object like List where User class have email and epp as instance variable then I am not getting any exception.
Is there any way to unwind on dynamic keys which are not part of bean but available in document.
I am using springMongoData db aggregation.
mongodb aggregation-framework spring-mongodb spring-mongo
mongodb aggregation-framework spring-mongodb spring-mongo
asked Mar 6 at 19:45
SanSan
1428
1428
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Looks like document structure should have exact same java representation. As in my case externalAttendees on which I was grouping is part of Map not instance variable of bean.
I tried executeCommand(BasicDBObject.parse(stringJson)) of MongoTemplate and it solve the purpose.
my stringJson will look like
"aggregate" : "__collection__" , "pipeline" : [ "$match" : "note.customFields.externalAttendees" : "$exists" : true , "$match" : "note.customFields.externalAttendees.name" : "$in" : [ "x" , "y"] , "$sort" : "createdDate" : -1 , "$unwind" : "$note.customFields.externalAttendees" , "$project" : "id" : 1 , "emailId" : "$note.customFields.externalAttendees.name" , "aType" : "$note.type" , "subject" : "$note.subject" , "$group" : "_id" : "$emailId" , "type" : "$first" : "$aType" , "subject" : "$first" : "$subject"],"cursor": "batchSize":10
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%2f55031067%2fspring-mongodb-unwind-on-nested-field%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
Looks like document structure should have exact same java representation. As in my case externalAttendees on which I was grouping is part of Map not instance variable of bean.
I tried executeCommand(BasicDBObject.parse(stringJson)) of MongoTemplate and it solve the purpose.
my stringJson will look like
"aggregate" : "__collection__" , "pipeline" : [ "$match" : "note.customFields.externalAttendees" : "$exists" : true , "$match" : "note.customFields.externalAttendees.name" : "$in" : [ "x" , "y"] , "$sort" : "createdDate" : -1 , "$unwind" : "$note.customFields.externalAttendees" , "$project" : "id" : 1 , "emailId" : "$note.customFields.externalAttendees.name" , "aType" : "$note.type" , "subject" : "$note.subject" , "$group" : "_id" : "$emailId" , "type" : "$first" : "$aType" , "subject" : "$first" : "$subject"],"cursor": "batchSize":10
add a comment |
Looks like document structure should have exact same java representation. As in my case externalAttendees on which I was grouping is part of Map not instance variable of bean.
I tried executeCommand(BasicDBObject.parse(stringJson)) of MongoTemplate and it solve the purpose.
my stringJson will look like
"aggregate" : "__collection__" , "pipeline" : [ "$match" : "note.customFields.externalAttendees" : "$exists" : true , "$match" : "note.customFields.externalAttendees.name" : "$in" : [ "x" , "y"] , "$sort" : "createdDate" : -1 , "$unwind" : "$note.customFields.externalAttendees" , "$project" : "id" : 1 , "emailId" : "$note.customFields.externalAttendees.name" , "aType" : "$note.type" , "subject" : "$note.subject" , "$group" : "_id" : "$emailId" , "type" : "$first" : "$aType" , "subject" : "$first" : "$subject"],"cursor": "batchSize":10
add a comment |
Looks like document structure should have exact same java representation. As in my case externalAttendees on which I was grouping is part of Map not instance variable of bean.
I tried executeCommand(BasicDBObject.parse(stringJson)) of MongoTemplate and it solve the purpose.
my stringJson will look like
"aggregate" : "__collection__" , "pipeline" : [ "$match" : "note.customFields.externalAttendees" : "$exists" : true , "$match" : "note.customFields.externalAttendees.name" : "$in" : [ "x" , "y"] , "$sort" : "createdDate" : -1 , "$unwind" : "$note.customFields.externalAttendees" , "$project" : "id" : 1 , "emailId" : "$note.customFields.externalAttendees.name" , "aType" : "$note.type" , "subject" : "$note.subject" , "$group" : "_id" : "$emailId" , "type" : "$first" : "$aType" , "subject" : "$first" : "$subject"],"cursor": "batchSize":10
Looks like document structure should have exact same java representation. As in my case externalAttendees on which I was grouping is part of Map not instance variable of bean.
I tried executeCommand(BasicDBObject.parse(stringJson)) of MongoTemplate and it solve the purpose.
my stringJson will look like
"aggregate" : "__collection__" , "pipeline" : [ "$match" : "note.customFields.externalAttendees" : "$exists" : true , "$match" : "note.customFields.externalAttendees.name" : "$in" : [ "x" , "y"] , "$sort" : "createdDate" : -1 , "$unwind" : "$note.customFields.externalAttendees" , "$project" : "id" : 1 , "emailId" : "$note.customFields.externalAttendees.name" , "aType" : "$note.type" , "subject" : "$note.subject" , "$group" : "_id" : "$emailId" , "type" : "$first" : "$aType" , "subject" : "$first" : "$subject"],"cursor": "batchSize":10
answered Mar 7 at 20:27
SanSan
1428
1428
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.
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%2f55031067%2fspring-mongodb-unwind-on-nested-field%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