Increase a counter with `$inc`.
Section: Field update operators
Increment a numeric field
javascript
javascript
db.posts.updateOne({ _id: 1 }, { $inc: { views: 1 } })Explanation
Ideal for counters, sequence-like values, and metrics.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Field update operators