Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to print BSON object from javascript

My mongoDB collection looks like this :

{
    "_id" : ObjectId("5070310e0f3350482b00011d"),
    "emails" : [
            {
                    "_id" : ObjectId("5070310e0f3350482b000120"),
                    "_type" : "Email",
                    "name" : "work",
                    "email" : "[email protected]",
                    "current" : true
            }
    ]
}

and this is the .js code i use to print the contents :

c = db.contacts.findOne( { "emails.email" : { $ne : null } }, { "emails" : 1 } )

print(c._id.toString() + " " + c.emails[0]);

when I try to run this javascript file, it is just displaying the id but not the email array.

output:
5070310e0f3350482b00011d [object bson_object]

but when I try c.emails[0].email is is giving proper result. i.e. [email protected]

All I need is I want to display the whole emails embedded object.

i.e.
"emails" : [
        {
                "_id" : ObjectId("5070310e0f3350482b000120"),
                "_type" : "Email",
                "name" : "work",
                "email" : "[email protected]",
                "current" : true
        }
]

Where I am going wrong?. Any help would be appreciated.

like image 692
user1518659 Avatar asked Nov 29 '12 09:11

user1518659


1 Answers

You need printjson to output a nicely formatted JSON:

printjson(c.emails[0]);

Here it is the documentation.

like image 64
Alexander Azarov Avatar answered Oct 13 '22 23:10

Alexander Azarov