0

Suppose this is my collection

db.collection.insert([
    {
        "5496":[
            {
                "Asset Name":"HiScanSQ",
                "Chiller Temperature (deg)":"2",
                "Trays Used (nos)":"12",
                "Power (volts)":"123",
                "Pressure (psi)":"15",
                "Usage (hours)":"140",
                "Volume (ml)":"150",
                "Viscosity":"1.8",
                "Cartridge Revolution (rpm)":"1000"
            }
        ]
    },
    {
        "4963":[
            {
                "Asset Name":"Genome Analyzer",
                "Chiller Temperature (deg)":"451",
                "Trays Used (nos)":"3",
                "Power (volts)":"82",
                "Pressure (psi)":"55",
                "Usage (hours)":"280",
                "Volume (ml)":"1000",
                "Viscosity":"1.2",
                "Cartridge Revolution (rpm)":"976"
            }
        ]
    }
]);

How do I fetch the entire array?say entire values of "5496". I need to get all the values related to a particular asset. So if I provide the asset id mongo should return all the asset details.

heinob
  • 19,127
  • 5
  • 41
  • 61
Bala
  • 1

2 Answers2

0

Try this:

db.collection.find( {}, { fields: { "5496": 1 }, function( err ,result ) {
    ...
});
heinob
  • 19,127
  • 5
  • 41
  • 61
0
db.collection.find( { "5496": { $exists: true } }, { "5496": 1, _id: 0 } ).pretty()
{
        "5496" : [
                {
                        "Asset Name" : "HiScanSQ",
                        "Chiller Temperature (deg)" : "2",
                        "Trays Used (nos)" : "12",
                        "Power (volts)" : "123",
                        "Pressure (psi)" : "15",
                        "Usage (hours)" : "140",
                        "Volume (ml)" : "150",
                        "Viscosity" : "1.8",
                        "Cartridge Revolution (rpm)" : "1000"
                }
        ]
}
vaettchen
  • 7,299
  • 22
  • 41