robbiblubber.org

help | login | search:  
<<

Home Page
Index

Projects

Utility Suite
Data Suite
Bad Wolf Suite
WeakWiki

User Docs

ConfigNotepad
LED
rqoon
Nuub

Code Docs

.NET
Java
PHP

robbiblubber.org

Specs
Articles

Sources















show wiki  show source  compare to current  compare to previous  read  history 


deleteMany()


MongoDB Driver Function Reference

Deletes all documents from a collection that meet the filter criteria.

There is no difference in usage and behavior between the delete() and deleteMany() functions. These functions can be considered synonyms.



db.<collection>.deleteMany(<filter>[, <options>])



Arguments


<collection> The target collection
<filter> A filter expression using query operators
<options> A BOSN document specifying options



Options


{ collation: <document>, hint: <document> }

collation A document specifying the collation
hint A document specifying a hint



Example


db.employees.deleteMany({ salary: { $gt: 700000 }});


Deletes all documents from the employee collection with a salary greater than 700000.




home | MongoDB Driver Function Reference | MongoDB Driver