{"_id" : "ObjectId(6465b9f26ada31fa533fc8d0)"} /* By Date Rate */ { "$or": [ { "createdAt": { "$gt": "{{addMinutes(now; -19)}}" } }, { "updatedAt": { "$gt": "{{addMinutes(now; -19)}}" } } ] } /* By ObjectID Date */ db.collection.find({ $expr: { $gte: [ {$toDate: "$_id"}, ISODate("2021-01-01T00:00:00Z") ] } } ) /* By ObjectID Date and Role */ { "$or": [ { "createdAt": { "$gt": "{{addMinutes(now; -11)}}" } }, { "updatedAt": { "$gt": "{{addMinutes(now; -11)}}" } }, { "lastSignInTime": { "$gt": "{{addMinutes(now; -11)}}" } } ], "roles": { "$in": ["worker", "jobProvider" ]} } { "$or": [ { "createdAt": { "$gt": "{{addMinutes(now; -11)}}" } }, { "updatedAt": { "$gt": "{{addMinutes(now; -11)}}" } }, { "deletedAt": { "$gt": "{{addMinutes(now; -11)}}" } } ] }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter