I am looking into deleting a document at a specific time.
const TestSchema = new Schema({ expire_at: { type: Date, }, }, { timestamps: true, }); TestSche
Deletion process runs after 60 seconds. So document can be there for 59 seconds after the deletion time has been passed.