One can use mongo embedded operator inside a query to extract the date from the _id.
I've used it to figure out the creation date of documents when retroactively needed them, by using:
{"createdAt": {"$toDate": "$_id"}}
Or any object id:
{"createdAt": {"$toDate": ObjectId("67e410e95889aedda612bcdf")}}