forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdateOne.txt
66 lines (47 loc) · 1.94 KB
/
updateOne.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
.. _laravel-update-one-usage:
=================
Update a Document
=================
.. facet::
:name: genre
:values: reference
.. meta::
:keywords: update one, modify, code example
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
You can update a document in a collection by retrieving a single document and calling
the ``update()`` method on an Eloquent model or a query builder.
Pass a query filter to the ``where()`` method, sort the matching documents, and call the
``first()`` method to retrieve only the first document. Then, update this matching document
by passing your intended document changes to the ``update()`` method.
Example
-------
This usage example performs the following actions:
- Uses the ``Movie`` Eloquent model to represent the ``movies`` collection in the
``sample_mflix`` database
- Updates a document from the ``movies`` collection that matches the query filter
- Prints the number of updated documents
The example calls the following methods on the ``Movie`` model:
- ``where()``: matches documents in which the value of the ``title`` field is ``"Carol"``.
- ``orderBy()``: sorts matched documents by their ascending ``_id`` values.
- ``first()``: retrieves only the first matching document.
- ``update()``: updates the value of the ``imdb.rating`` nested field to from ``6.9`` to
``7.3`` and the value of the ``imdb.votes`` nested field from ``493`` to ``142000``.
.. io-code-block::
:copyable: true
.. input:: ../includes/usage-examples/UpdateOneTest.php
:start-after: begin-update-one
:end-before: end-update-one
:language: php
:dedent:
.. output::
:language: console
:visible: false
Updated documents: 1
.. include:: /includes/usage-examples/fact-edit-laravel-app.rst
.. tip::
To learn more about updating data with {+odm-short+}, see the :ref:`laravel-fundamentals-modify-documents`
section of the Write Operations guide.