-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathdb.collection.deleteOne.txt
345 lines (232 loc) · 8.23 KB
/
db.collection.deleteOne.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
=========================
db.collection.deleteOne()
=========================
.. default-domain:: mongodb
.. meta::
:description: Delete a single document from a collection.
.. facet::
:name: programming_language
:values: shell
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
.. include:: /includes/wayfinding/mongosh-method-deleteOne.rst
Definition
----------
.. method:: db.collection.deleteOne()
Removes a single document from a collection.
:returns:
A document containing:
- A boolean ``acknowledged`` as ``true`` if the operation ran with
:term:`write concern` or ``false`` if write concern was disabled
- ``deletedCount`` containing the number of deleted documents
Compatibility
-------------
.. |operator-method| replace:: ``db.collection.deleteOne()``
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-atlas-support-all.rst
.. include:: /includes/fact-environments-onprem-only.rst
Syntax
------
The :method:`~db.collection.deleteOne()` method has the following form:
.. code-block:: javascript
db.collection.deleteOne(
<filter>,
{
writeConcern: <document>,
collation: <document>,
hint: <document|string>
}
)
The :method:`~db.collection.deleteOne()` method takes the following
parameters:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - :ref:`filter <deleteOne-filter>`
- document
- .. _deleteOne-filter:
Specifies deletion criteria using a :ref:`query predicate
<query-predicates-ref>`.
Specify an empty document ``{ }`` to delete the first document returned in
the collection.
* - :ref:`writeConcern <deleteOne-wc>`
- document
- .. _deleteOne-wc:
Optional. A document expressing the :doc:`write concern
</reference/write-concern>`. Omit to use the default write concern.
.. include:: /includes/extracts/transactions-operations-write-concern.rst
* - :ref:`collation <deleteOne-collation>`
- document
- .. _deleteOne-collation:
Optional.
.. include:: /includes/extracts/collation-option.rst
* - :ref:`hint <deleteOne-hint>`
- document
- .. _deleteOne-hint:
Optional. A document or string that specifies the :ref:`index
<indexes>` to use to support the :ref:`query predicate
<deleteOne-filter>`.
The option can take an index specification document or the
index name string.
If you specify an index that does not exist, the operation
errors.
For an example, see :ref:`ex-deleteOne-hint`.
Behavior
--------
.. _deleteOne-deletion-order:
Deletion Order
~~~~~~~~~~~~~~
:method:`db.collection.deleteOne` deletes the first document that matches
the filter. Use a field that is part of a :term:`unique index` such as ``_id``
for precise deletions.
Sharded Collections
~~~~~~~~~~~~~~~~~~~
To use :method:`db.collection.deleteOne` on a sharded collection:
- If you only target one shard, you can use a partial shard key in the query specification or,
- If you set ``limit: 1``, you do not need to provide the :term:`shard key`
or ``_id`` field in the query specification.
Transactions
~~~~~~~~~~~~
.. include:: /includes/extracts/transactions-supported-operation.rst
.. include:: /includes/extracts/transactions-operations-write-concern.rst
.. include:: /includes/extracts/transactions-usage.rst
.. |operation| replace:: :method:`db.collection.deleteOne()`
Oplog Entries
~~~~~~~~~~~~~
If a ``db.collection.deleteOne()`` operation successfully deletes a
document, the operation adds an entry on the :term:`oplog` (operations
log). If the operation fails or does not find a document to delete, the
operation does not add an entry on the oplog.
Examples
--------
.. _deleteOne-example-delete-single-document:
Delete a Single Document
~~~~~~~~~~~~~~~~~~~~~~~~
The ``orders`` collection has documents with the following structure:
.. code-block:: javascript
db.orders.insertOne(
{
_id: ObjectId("563237a41a4d68582c2509da"),
stock: "Brent Crude Futures",
qty: 250,
type: "buy-limit",
limit: 48.90,
creationts: ISODate("2015-11-01T12:30:15Z"),
expiryts: ISODate("2015-11-01T12:35:15Z"),
client: "Crude Traders Inc."
}
)
The following operation deletes the order with ``_id:
ObjectId("563237a41a4d68582c2509da")`` :
.. code-block:: javascript
try {
db.orders.deleteOne( { _id: ObjectId("563237a41a4d68582c2509da") } );
} catch (e) {
print(e);
}
The operation returns:
.. code-block:: javascript
{ acknowledged: true, deletedCount: 1 }
The following operation deletes the first document with ``expiryts`` greater
than ``ISODate("2015-11-01T12:40:15Z")``
.. code-block:: javascript
try {
db.orders.deleteOne( { expiryts: { $lt: ISODate("2015-11-01T12:40:15Z") } } );
} catch (e) {
print(e);
}
The operation returns:
.. code-block:: javascript
{ acknowledged: true, deletedCount: 1 }
.. _deleteOne-example-update-with-write-concern:
deleteOne() with Write Concern
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Given a three member replica set, the following operation specifies a
``w`` of ``majority``, ``wtimeout`` of ``100``:
.. code-block:: javascript
try {
db.orders.deleteOne(
{ _id: ObjectId("563237a41a4d68582c2509da") },
{ w: "majority", wtimeout: 100 }
);
} catch (e) {
print (e);
}
If the acknowledgment takes longer than the ``wtimeout`` limit, the following
exception is thrown:
.. code-block:: javascript
WriteConcernError({
code: 64,
errmsg: "waiting for replication timed out",
errInfo: {
wtimeout: true,
writeConcern: {
w: "majority",
wtimeout: 100,
provenance: "getLastErrorDefaults"
}
}
})
.. seealso::
:data:`WriteResult.writeConcernError`
Specify Collation
~~~~~~~~~~~~~~~~~
.. include:: /includes/extracts/collation-versionadded.rst
A collection ``restaurants`` has the following documents:
.. code-block:: javascript
db.restaurants.insertMany( [
{ _id: 1, category: "café", status: "A" },
{ _id: 2, category: "cafe", status: "a" },
{ _id: 3, category: "cafE", status: "a" }
] )
The following operation includes the :ref:`collation <collation>`
option:
.. code-block:: javascript
db.restaurants.deleteOne(
{ category: "cafe", status: "A" },
{ collation: { locale: "fr", strength: 1 } }
)
.. _ex-deleteOne-hint:
Specify ``hint`` for Delete Operations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In :binary:`~bin.mongosh`, create a ``students`` collection
with the following documents:
.. code-block:: javascript
db.members.insertMany( [
{ _id: 1, student: "Richard", grade: "F", points: 0 },
{ _id: 2, student: "Jane", grade: "A", points: 60 },
{ _id: 3, student: "Adam", grade: "F", points: 0 },
{ _id: 4, student: "Ronan", grade: "D", points: 20 },
{ _id: 5, student: "Noah", grade: "F", points: 0 },
{ _id: 6, student: "Henry", grade: "A", points: 86 }
] )
Create the following index on the collection:
.. code-block:: javascript
db.members.createIndex( { grade: 1 } )
The following delete operation explicitly hints to use the index
``{ grade: 1 }``:
.. code-block:: javascript
db.members.deleteOne(
{ points: { $lte: 20 }, grade: "F" },
{ hint: { grade: 1 } }
)
.. note::
If you specify an index that does not exist, the operation errors.
The delete command returns the following:
.. code-block:: javascript
{ acknowledged: true, deletedCount: 1 }
To view the indexes used, you can use the :pipeline:`$indexStats` pipeline:
.. code-block:: javascript
db.members.aggregate( [ { $indexStats: { } }, { $sort: { name: 1 } } ] )
The ``accesses.ops`` field in the :pipeline:`$indexStats` output
indicates the number of operations that used the index.
.. seealso::
To delete multiple documents, see
:method:`db.collection.deleteMany()`