My problem is that I've got objects with date property,and I want to filter by date in my front-end application (using angularJS).
but unfortunately the mongoose serialize the object as key-value strings example of object :
"_id":123456,
Name :"Adam",
Family: "Levine",
Date : ISODate("2017-02-22T22:00:00:00Z"),
"__v":0
but when Im do Model.find() mongoose function, Im get this object :
"_id":123456,
Name :"Adam",
Family: "Levine",
Date : "2017-02-22T22:00:00:00Z"
how can I fix that problem ?