-
Notifications
You must be signed in to change notification settings - Fork 34
DOCSP-47058: Shift TOC #251
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b09530d
DOCSP-47058: Shift TOC
norareidy f3833c2
edits
norareidy 5f9ae2e
issues and help, edits
norareidy 4893502
fix errors
norareidy 72bd19a
redirects
norareidy a253e74
landing
norareidy 44ad1b8
RR feedback
norareidy 6b0af60
RR feedback 2
norareidy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.. _php-crud-operations: | ||
|
||
=============== | ||
CRUD Operations | ||
=============== | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol | ||
|
||
.. facet:: | ||
:name: genre | ||
:values: reference | ||
|
||
.. meta:: | ||
:description: Learn how to use the {+library-short+} to read and write MongoDB data. | ||
:keywords: usage examples, query, find, code example, save, create | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:maxdepth: 1 | ||
|
||
Insert Documents </crud/insert> | ||
Query Documents </crud/query> | ||
Update Documents </crud/update> | ||
Replace Documents </crud/replace> | ||
Delete Documents </crud/delete> | ||
Bulk Write Operations </crud/bulk-write> | ||
Transactions </crud/transaction> | ||
Configure CRUD Operations </crud/read-write-pref> | ||
Store Large Files </crud/gridfs> | ||
Operations with Builders </crud/builders> | ||
|
||
CRUD (Create, Read, Update, Delete) operations enable you to work with | ||
data stored in MongoDB. To learn more about running CRUD operations on | ||
your data, visit the following guides: | ||
|
||
- :ref:`php-write-insert` | ||
- :ref:`php-query` | ||
- :ref:`php-write-update` | ||
- :ref:`php-write-replace` | ||
- :ref:`php-write-delete` | ||
- :ref:`php-bulk-write` | ||
- :ref:`php-transactions` | ||
- :ref:`php-read-write-pref` | ||
- :ref:`php-gridfs` | ||
- :ref:`php-builders` |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
.. _php-query: | ||
|
||
================ | ||
Query Operations | ||
================ | ||
|
||
.. meta:: | ||
:description: Learn how to use the {+library-short+} to read data from MongoDB. | ||
:keywords: usage examples, query, find, code example | ||
|
||
.. facet:: | ||
:name: genre | ||
:values: reference | ||
|
||
.. meta:: | ||
:keywords: code example, node.js, sample dataset | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
Find Documents </crud/query/retrieve> | ||
Specify Documents to Return </crud/query/specify-documents-to-return> | ||
Specify Fields to Return </crud/query/project> | ||
Specify a Query </crud/query/specify-a-query> | ||
Count Documents </crud/query/count> | ||
Distinct Field Values </crud/query/distinct> | ||
Access Data from a Cursor </crud/query/cursor> | ||
|
||
rustagir marked this conversation as resolved.
Show resolved
Hide resolved
|
||
To learn more about querying data stored in MongoDB collections, | ||
visit the following guides: | ||
|
||
- :ref:`php-retrieve` | ||
- :ref:`php-specify-documents-to-return` | ||
- :ref:`php-project` | ||
- :ref:`php-count` | ||
- :ref:`php-distinct` | ||
- :ref:`php-cursors` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
Codecs | ||
====== | ||
|
||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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: add
/connect/connection-options/