How to query on nested object using loopback model query?









up vote
1
down vote

favorite












I have this data on mongodb in a table named "Alerts" in geojson format



[

"_id" : ObjectId("5be40b8099d5b81e6115d517"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.11,
"place" : "12km S of Tres Pinos,
CA",
"time" : 1541163534230,
,
"geometry" :
"type" : "Point",
"coordinates" : [
-121.3146667,
36.6801667,
6.48
]
,
"id" : "nc73105276"



"_id" : ObjectId("5be401c39b9e021a4c1a5c80"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.5,
"place" : "107km NW of Tobelo,
Indonesia",
"time" : 1541665816710,
,
"geometry" :
"type" : "Point",
"coordinates" : [
127.2763,
2.3671,
31.55
]
,
"id" : "us1000hp6t"


]


I want to retrieve the field "id" which is nested inside "extAlertData" and time using model query.



Expected Output :



[

id:'nc73105276',
time:'1541163534230'
,

id:'us1000hp6t',
time:'1541665816710'

]


Following query does not working.



db.Alerts.find(fields : "extAlertData.id": true,
function (err, Alerts)
//process alert extAlertData.id

});


Query is retrieving the following error:



TypeError: Cannot read property 'id' of undefined


How can I query using fields filter in mongoDB? I am using loopback framework of node js.



Thanks in advance.










share|improve this question























  • You can use $group aggregation stage with $push accumulator. Something like this db.collection.aggregate([ "$group": "_id": null, "ids": "$push": "id": "$extAlertData.id", "time": "$extAlertData.properties.time" ])
    – Anthony Winzlet
    Nov 9 at 7:16











  • @AnthonyWinzlet thank you so much.Its working perfect.
    – Annie
    Nov 9 at 9:13














up vote
1
down vote

favorite












I have this data on mongodb in a table named "Alerts" in geojson format



[

"_id" : ObjectId("5be40b8099d5b81e6115d517"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.11,
"place" : "12km S of Tres Pinos,
CA",
"time" : 1541163534230,
,
"geometry" :
"type" : "Point",
"coordinates" : [
-121.3146667,
36.6801667,
6.48
]
,
"id" : "nc73105276"



"_id" : ObjectId("5be401c39b9e021a4c1a5c80"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.5,
"place" : "107km NW of Tobelo,
Indonesia",
"time" : 1541665816710,
,
"geometry" :
"type" : "Point",
"coordinates" : [
127.2763,
2.3671,
31.55
]
,
"id" : "us1000hp6t"


]


I want to retrieve the field "id" which is nested inside "extAlertData" and time using model query.



Expected Output :



[

id:'nc73105276',
time:'1541163534230'
,

id:'us1000hp6t',
time:'1541665816710'

]


Following query does not working.



db.Alerts.find(fields : "extAlertData.id": true,
function (err, Alerts)
//process alert extAlertData.id

});


Query is retrieving the following error:



TypeError: Cannot read property 'id' of undefined


How can I query using fields filter in mongoDB? I am using loopback framework of node js.



Thanks in advance.










share|improve this question























  • You can use $group aggregation stage with $push accumulator. Something like this db.collection.aggregate([ "$group": "_id": null, "ids": "$push": "id": "$extAlertData.id", "time": "$extAlertData.properties.time" ])
    – Anthony Winzlet
    Nov 9 at 7:16











  • @AnthonyWinzlet thank you so much.Its working perfect.
    – Annie
    Nov 9 at 9:13












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have this data on mongodb in a table named "Alerts" in geojson format



[

"_id" : ObjectId("5be40b8099d5b81e6115d517"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.11,
"place" : "12km S of Tres Pinos,
CA",
"time" : 1541163534230,
,
"geometry" :
"type" : "Point",
"coordinates" : [
-121.3146667,
36.6801667,
6.48
]
,
"id" : "nc73105276"



"_id" : ObjectId("5be401c39b9e021a4c1a5c80"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.5,
"place" : "107km NW of Tobelo,
Indonesia",
"time" : 1541665816710,
,
"geometry" :
"type" : "Point",
"coordinates" : [
127.2763,
2.3671,
31.55
]
,
"id" : "us1000hp6t"


]


I want to retrieve the field "id" which is nested inside "extAlertData" and time using model query.



Expected Output :



[

id:'nc73105276',
time:'1541163534230'
,

id:'us1000hp6t',
time:'1541665816710'

]


Following query does not working.



db.Alerts.find(fields : "extAlertData.id": true,
function (err, Alerts)
//process alert extAlertData.id

});


Query is retrieving the following error:



TypeError: Cannot read property 'id' of undefined


How can I query using fields filter in mongoDB? I am using loopback framework of node js.



Thanks in advance.










share|improve this question















I have this data on mongodb in a table named "Alerts" in geojson format



[

"_id" : ObjectId("5be40b8099d5b81e6115d517"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.11,
"place" : "12km S of Tres Pinos,
CA",
"time" : 1541163534230,
,
"geometry" :
"type" : "Point",
"coordinates" : [
-121.3146667,
36.6801667,
6.48
]
,
"id" : "nc73105276"



"_id" : ObjectId("5be401c39b9e021a4c1a5c80"),
"title" : "Real-time earthquake",
"priority" : "high",
"status" : NumberInt("1"),
"extAlertData" :
"type" : "Feature",
"properties" :
"mag" : 4.5,
"place" : "107km NW of Tobelo,
Indonesia",
"time" : 1541665816710,
,
"geometry" :
"type" : "Point",
"coordinates" : [
127.2763,
2.3671,
31.55
]
,
"id" : "us1000hp6t"


]


I want to retrieve the field "id" which is nested inside "extAlertData" and time using model query.



Expected Output :



[

id:'nc73105276',
time:'1541163534230'
,

id:'us1000hp6t',
time:'1541665816710'

]


Following query does not working.



db.Alerts.find(fields : "extAlertData.id": true,
function (err, Alerts)
//process alert extAlertData.id

});


Query is retrieving the following error:



TypeError: Cannot read property 'id' of undefined


How can I query using fields filter in mongoDB? I am using loopback framework of node js.



Thanks in advance.







node.js mongodb mongodb-query aggregation-framework loopback






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 7:04









Anthony Winzlet

12.2k41038




12.2k41038










asked Nov 9 at 6:56









Annie

113




113











  • You can use $group aggregation stage with $push accumulator. Something like this db.collection.aggregate([ "$group": "_id": null, "ids": "$push": "id": "$extAlertData.id", "time": "$extAlertData.properties.time" ])
    – Anthony Winzlet
    Nov 9 at 7:16











  • @AnthonyWinzlet thank you so much.Its working perfect.
    – Annie
    Nov 9 at 9:13
















  • You can use $group aggregation stage with $push accumulator. Something like this db.collection.aggregate([ "$group": "_id": null, "ids": "$push": "id": "$extAlertData.id", "time": "$extAlertData.properties.time" ])
    – Anthony Winzlet
    Nov 9 at 7:16











  • @AnthonyWinzlet thank you so much.Its working perfect.
    – Annie
    Nov 9 at 9:13















You can use $group aggregation stage with $push accumulator. Something like this db.collection.aggregate([ "$group": "_id": null, "ids": "$push": "id": "$extAlertData.id", "time": "$extAlertData.properties.time" ])
– Anthony Winzlet
Nov 9 at 7:16





You can use $group aggregation stage with $push accumulator. Something like this db.collection.aggregate([ "$group": "_id": null, "ids": "$push": "id": "$extAlertData.id", "time": "$extAlertData.properties.time" ])
– Anthony Winzlet
Nov 9 at 7:16













@AnthonyWinzlet thank you so much.Its working perfect.
– Annie
Nov 9 at 9:13




@AnthonyWinzlet thank you so much.Its working perfect.
– Annie
Nov 9 at 9:13












1 Answer
1






active

oldest

votes

















up vote
0
down vote
















var yourdata =;
var cursor = db.collection('Alerts').find();

cursor.each(function(err, item)

if (item != null)
var yourid = item.extAlertData.id;
var yourtime = item.extAlertData.properties.time;
var pushdata = id: yourid,time: yourtime;
yourdata.push(pushdata);

);








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',
    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%2f53221113%2fhow-to-query-on-nested-object-using-loopback-model-query%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








    up vote
    0
    down vote
















    var yourdata =;
    var cursor = db.collection('Alerts').find();

    cursor.each(function(err, item)

    if (item != null)
    var yourid = item.extAlertData.id;
    var yourtime = item.extAlertData.properties.time;
    var pushdata = id: yourid,time: yourtime;
    yourdata.push(pushdata);

    );








    share|improve this answer
























      up vote
      0
      down vote
















      var yourdata =;
      var cursor = db.collection('Alerts').find();

      cursor.each(function(err, item)

      if (item != null)
      var yourid = item.extAlertData.id;
      var yourtime = item.extAlertData.properties.time;
      var pushdata = id: yourid,time: yourtime;
      yourdata.push(pushdata);

      );








      share|improve this answer






















        up vote
        0
        down vote










        up vote
        0
        down vote












        var yourdata =;
        var cursor = db.collection('Alerts').find();

        cursor.each(function(err, item)

        if (item != null)
        var yourid = item.extAlertData.id;
        var yourtime = item.extAlertData.properties.time;
        var pushdata = id: yourid,time: yourtime;
        yourdata.push(pushdata);

        );








        share|improve this answer















        var yourdata =;
        var cursor = db.collection('Alerts').find();

        cursor.each(function(err, item)

        if (item != null)
        var yourid = item.extAlertData.id;
        var yourtime = item.extAlertData.properties.time;
        var pushdata = id: yourid,time: yourtime;
        yourdata.push(pushdata);

        );








        var yourdata =;
        var cursor = db.collection('Alerts').find();

        cursor.each(function(err, item)

        if (item != null)
        var yourid = item.extAlertData.id;
        var yourtime = item.extAlertData.properties.time;
        var pushdata = id: yourid,time: yourtime;
        yourdata.push(pushdata);

        );





        var yourdata =;
        var cursor = db.collection('Alerts').find();

        cursor.each(function(err, item)

        if (item != null)
        var yourid = item.extAlertData.id;
        var yourtime = item.extAlertData.properties.time;
        var pushdata = id: yourid,time: yourtime;
        yourdata.push(pushdata);

        );






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 9 at 7:41









        LDS

        1906




        1906



























            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.





            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53221113%2fhow-to-query-on-nested-object-using-loopback-model-query%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

            𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

            Edmonton

            Crossroads (UK TV series)