forked from mongodb/docs-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrud.txt
26 lines (19 loc) · 855 Bytes
/
crud.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
.. _golang-crud:
===============
CRUD Operations
===============
.. toctree::
:caption: CRUD Operations
Read </fundamentals/crud/read-operations>
Write </fundamentals/crud/write-operations>
Compound Operations </fundamentals/crud/compound-operations>
Modify CRUD Execution </fundamentals/crud/write-read-pref>
CRUD (Create, Read, Update, Delete) operations enable you to work with
data stored in MongoDB.
- :ref:`golang-crud-read-operations` find and return
documents stored in your database.
- :ref:`golang-crud-write-operations` insert, modify,
or delete documents in your database.
Some operations combine aspects of read and write operations. To learn
more about these hybrid methods, see :ref:`golang-compound-operations`.
To learn about how to modify the way your CRUD operations execute, see :ref:`golang-write-read-pref`.