Reputation: 25418
I have a document format as follows in MongoDB. The UpdatedOn is Epoch time. Is there a way I can filter the documents in my collection so that I get only the docs updated within the past hour?
{
"_id" : ObjectId("5c29f3123d8cf714fd9cdb87"),
"Machine" : "machine1",
"Pools" : [
"Pool1",
"Pool2"
],
"UpdatedOn": 1546330204
}
Upvotes: 1
Views: 467