How to mark documents as marked/deleted in mongodb?

Member

by addison , in category: MySQL , 3 months ago

How to mark documents as marked/deleted in mongodb?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by mallory_cormier , 3 months ago

@addison 

In MongoDB, you can mark documents as deleted by adding a "deleted" field to the document and setting it to true. This way, you can keep the actual document in the database but mark it as deleted for reference.


Here is an example of how you can mark a document as deleted in MongoDB:

  1. Update the document by adding a "deleted" field and setting it to true:
1
2
3
4
db.collection.update(
   { _id: ObjectId("documentId") },
   { $set: { deleted: true } }
);


  1. Optionally, you can also add a "deletedAt" field to track the timestamp when the document was deleted:
1
2
3
4
db.collection.update(
   { _id: ObjectId("documentId") },
   { $set: { deleted: true, deletedAt: new Date() } }
);


  1. To query for documents that are marked as deleted, you can use the following query:
1
db.collection.find({ deleted: true });


By following these steps, you can mark documents as deleted in MongoDB without actually removing them from the database. This approach can help maintain a history of deleted documents and easily recover them if needed.

Related Threads:

How to count documents in MongoDB using PHP?
How to find documents in mongodb where some fields are not null?
How to concatenate arrays from multiple documents in mongodb?
How to stop insertion of duplicate documents in a mongodb collection?
How to mark a file as not binary in git?
How to add question mark to .htaccess?