简体   繁体   中英

How to get count of elements in document array - MongoDB?

I have the following MongoDB collection (JSON):

{
    "_id" : ObjectId("570185458351bbac27bc9a20"),
    "email" : "test@gmail.com",
    "applicants" : [
            {
                    "id" : "570724e4ae4f8a5026156999",
                    "email" : "a@gmail.com",
            },
            {
                    "id" : "570724e4ae4f8a5026156333",
                    "email" : "a2@gmail.com",
            },
            {
                    "id" : "570724e4ae4f8a5026156111",
                    "email" : "a3@gmail.com",
            },
            {
                    "id" : "570724e4ae4f8a5026156222",
                    "email" : "a4@gmail.com",
            }
    ],
}, 
{
    "_id" : ObjectId("570185458351bbac27bc9a20"),
    "email" : "test@gmail.com",
    "applicants" : [
            {
                    "id" : "570724e4ae4f8a5026156555",
                    "email" : "a@gmail.com",
            },
            {
                    "id" : "570724e4ae4f8a5026156666",
                    "email" : "a2@gmail.com",
            },
    ],
},
{
    "_id" : ObjectId("570185458351bbac27bc9a20"),
    "email" : "test2@gmail.com",
    "applicants" : [
            {
                    "id" : "570724e4ae4f8a5026156555",
                    "email" : "a@gmail.com",
            },
            {
                    "id" : "570724e4ae4f8a5026156666",
                    "email" : "a2@gmail.com",
            },
    ],
 }

I would like to get the count of the elements in all arrays of the of the document where the email = test@gmail.com. How can I go about getting that count?

I am using the following to get the number of documents with email test@gmail.com using this:

   collection.count({"email" : tmpEmail},    function (err, count) {
      res.json(count);
      console.log("Number: " + count);
    }); 

How can I go ahead and count the number of elements in all applicant arrays for the documents where the email is test@gmail.com? The could for the example above would be: 6.

EDIT:

As per one of the answers I modified my query to the following:

Answer 1:

collection.aggregate(
        {$match: {"email": req.user.username, "status" : "true"}},
        {$unwind: "$applicants"},
        {$group: {_id:null, count: {$sum :1}},  function (err, count) {
            res.json(count);
            console.log("Number of New Applicants: " + count);
            }
        });

Answer 2:

collection.aggregate(
        [{$match:{"email" : req.user.username, "status" : "true"}}, 
         {$project:{_id:0, email:1, totalApplicants:{$size:"$applicants"}}},  
         {$group:{_id:"$employer", count:{$sum:"$totalApplicants"}}}],
         function (err, count){
             res.json(count);
             console.log("Number of New Applicants: " + count);
         });

You can use an aggregate query instead:

collection.aggregate(
    [{$match: {"email": req.user.username, "status" : "true"}},
    {$unwind: "$applicants"},
    {$group: {_id:null, count: {$sum :1}}}],  function (err, result) {
        console.log(result);
        console.log("Number of New Applicants: " + result[0].count);
        if(result.length > 0)
            res.json(result[0]);
        else
            res.json({count:0});
        }
    });

This will result you in one document where count will have your required result

This may require to write a aggregation since you need to count the size of applicants array grouped by email:

Here is the equivalent mongodb query that returns the expected email with count:

db.yourCollection.aggregate(

  [{$match:{"email" : "test@gmail.com"}}, 

  {$project:{_id:0, email:1,totalEmails:{$size:"$applicants"}}},  

  {$group:{_id:"$email", count:{$sum:"$totalEmails"}}}])

This returns { "_id" : "test@gmail.com", "count" : 6 }

You may need to change this according to your code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM