-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOCSP-35943: write operations reorg #3275
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mostly left small copy edits but I'll take another look!
|
||
Update or Insert in a Single Operation | ||
-------------------------------------- | ||
To learn more about any of the methods shown on this page, see the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S: to stay consistent with "guide"
To learn more about any of the methods shown on this page, see the | |
To learn more about any of the methods included in this guide, see the |
|
||
If the id values do not match any documents, the ``destroy()`` method | ||
returns returns ``0``. | ||
To learn more about inserting documents, see the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
To learn more about inserting documents, see the | |
To learn more about deleting documents, see the |
|
||
To learn more about inserting documents, see the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
To learn more about inserting documents, see the | |
To learn more about deleting documents, see the |
:dedent: | ||
:start-after: begin model insert one | ||
:end-before: end model insert one | ||
:caption: Insert a document by calling the save() method on an instance. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S: I don't think you need this caption; since you're already introducing the code example pretty thoroughly it seems repetitive
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Applies to the other code captions too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deleted all of the captions on the write subpages
When the ``insert()`` method succeeds, it returns the value ``1``. If it | ||
fails, it throws an exception. | ||
|
||
The example code saves multiple models in a single call by passing them as |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
The example code saves multiple models in a single call by passing them as | |
The following example code saves multiple models in a single call by passing them as |
in the array. The following code example shows the structure of a ``push()`` | ||
method call: | ||
|
||
.. code-block:: none |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
.. code-block:: none | |
.. code-block:: php |
from the array. The following code example shows the structure of a | ||
``pull()`` method call: | ||
|
||
.. code-block:: none |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
.. code-block:: none | |
.. code-block:: php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
applies to the other syntax code examples too
- Call the ``$model->delete()`` method on an instance of the model. | ||
- Chain methods to retrieve and delete an instance of a model by calling the | ||
``delete()`` method. | ||
- Call the ``Model::destroy($id)`` method on the model, passing it the id of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
- Call the ``Model::destroy($id)`` method on the model, passing it the id of | |
- Call the ``Model::destroy($id)`` method on the model, passing it the ``_id`` value of |
~~~~~~~~~~~~~~~~ | ||
|
||
The following example shows how to delete a document by passing the value of | ||
its id to the ``Model::destroy($id)`` method: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
its id to the ``Model::destroy($id)`` method: | |
its ``_id`` to the ``Model::destroy($id)`` method: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
applies to all mentions of "id"
deleted. | ||
|
||
If the id value does not match any documents, the ``destroy()`` method | ||
returns returns ``0``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S:
returns returns ``0``. | |
returns ``0``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
https://jira.mongodb.org/browse/DOCSP-35943
Reorganizes content on Write Operations page into separate files
STAGING
^ edits are mostly in this landing page, nearly all of the content on the drawer pages was directly copy/pasted from the main page pre-edits
Checklist