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










0















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.










share|improve this question


























    0















    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.










    share|improve this question
























      0












      0








      0








      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.










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 19:45









      SanSan

      1428




      1428






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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





          share|improve this answer






















            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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





            share|improve this answer



























              0














              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





              share|improve this answer

























                0












                0








                0







                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





                share|improve this answer













                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






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 7 at 20:27









                SanSan

                1428




                1428





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

                    Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

                    Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved