I am looking into deleting a document at a specific time.
const TestSchema = new Schema({ expire_at: { type: Date, }, }, { timestamps: true, }); TestSche
This will delete the document in two hours:
const TestSchema = new Schema({ expire_at: {type: Date, default: Date.now, expires: 7200} }) //expired in 2 hours