Database

[{_id:ObjectId("65c656fd8651a89640db013a"),insertedAt:ISODate("2023-02-01T16:46:33.166Z"),/** First record of collection*/name:"Bob Jhonson"},{_id:ObjectId("65c4d88a2a06618ad4e972f1"),insertedAt:ISODate("2023-02-02T16:46:33.166Z"),/** Second record of collection*/name:"Bob Jhonson"},{_id:ObjectId("65c4d88a2a06618ad4e972f2"),insertedAt:ISODate("2023-02-03T16:46:33.166Z"),/** Third record of collection*/name:"Bob Jhonson"},{_id:ObjectId("65c4d88a2a06618ad4e972f4"),insertedAt:ISODate("2023-02-04T16:46:33.166Z"),/** Last record of collection*/name:"Bob Jhonson"}]

Query

db.collection.aggregate([{$sort:{"insertedAt":1}},{$facet:{docs:[]}},{$project:{docs:[{$arrayElemAt:["$docs",0]},{$arrayElemAt:["$docs",-1]}]}},{$unwind:"$docs"},{$replaceWith:"$docs"}])

Result