When i run this query this then i am not getting comingDate
db.getCollection(“Agents”).find(
{
“_id” : ObjectId(“”)
},
{
“FUnique” : 1.0,
“Current” : 1.0,
“level” : 1.0,
“comingDate” : 1.0
}
);
But When i run this query this then i am getting comingDate
db.getCollection(“Agents”).find(
{
“_id” : ObjectId(“”)
},
{
“FUnique” : 1.0,
“Current” : 1.0,
“comingDate” : 1.0
}
);