I need to search through a large mongo collection and find all the documents where updatedAt is at least 7 days after createdAt.
My data looks basically like this:
"createdAt" : ISODate("2021-04-03T10:17:21.256Z"),
"updatedAt" : ISODate("2021-04-03T10:17:21.256Z")
I would appreciate any help.