-
Notifications
You must be signed in to change notification settings - Fork 10
DOCSP-51351-reorganize-toc #106
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
Changes from 5 commits
91847e4
67dd38e
1187119
e717e82
184beb2
2534632
e64ac77
5e6912d
ec339ed
36f824c
551f22d
ae0d562
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.. _kotlin-sync-atlas-search: | ||
|
||
============ | ||
Atlas Search | ||
============ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.. _kotlin-sync-atlas-vector-search: | ||
|
||
=================== | ||
Atlas Vector Search | ||
=================== |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.. _kotlin-sync-crud-landing: | ||
.. _kotlin-sync-crud-operations: | ||
.. _kotlin-sync-write: | ||
.. _kotlin-sync-read: | ||
|
||
=============== | ||
CRUD Operations | ||
=============== | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol | ||
|
||
.. facet:: | ||
:name: genre | ||
:values: reference | ||
|
||
.. meta:: | ||
:description: Learn how to use {+driver-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/transactions> | ||
Configure CRUD Operations </crud/configure> | ||
Store Large Files </crud/gridfs> | ||
|
||
CRUD (Create, Read, Update, Delete) operations enable you to work with | ||
data stored in MongoDB. | ||
|
||
- :ref:`kotlin-sync-write-insert` | ||
- :ref:`kotlin-sync-query` | ||
- :ref:`kotlin-sync-write-update` | ||
- :ref:`kotlin-sync-write-replace` | ||
- :ref:`kotlin-sync-write-delete` | ||
- :ref:`kotlin-sync-bulk-write` | ||
- :ref:`kotlin-sync-write-transactions` | ||
- :ref:`kotlin-sync-configure` | ||
- :ref:`kotlin-sync-gridfs` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.. _kotlin-sync-configure: | ||
|
||
============================== | ||
Configure Custom CRUD Settings | ||
============================== | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.. _kotlin-sync-gridfs: | ||
|
||
============================== | ||
Large File Storage with GridFS | ||
============================== | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.. _kotlin-sync-query: | ||
|
||
=============== | ||
Query Documents | ||
=============== | ||
|
||
.. meta:: | ||
:description: Learn how to use {+driver-short+} to read data from MongoDB. | ||
:keywords: usage examples, query, find, code example | ||
|
||
.. facet:: | ||
:name: genre | ||
:values: reference | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
Find Documents </crud/query/find> | ||
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/cursors> | ||
|
||
- :ref:`kotlin-sync-find` | ||
- :ref:`kotlin-sync-specify-documents-to-return` | ||
- :ref:`kotlin-sync-project` | ||
- :ref:`kotlin-sync-specify-query` | ||
- :ref:`kotlin-sync-count` | ||
- :ref:`kotlin-sync-distinct` | ||
- :ref:`kotlin-sync-cursors` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,8 @@ Specialized Data Formats | |
:titlesonly: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S: This page title can just be "Data Formats" according to the spreadsheet |
||
:maxdepth: 1 | ||
|
||
Custom Types </data-formats/custom-types> | ||
Data Classes </data-formats/data-format-data-class> | ||
Kotlin Serialization </data-formats/serialization> | ||
Codecs </data-formats/codecs> | ||
BSON </data-formats/bson> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S: I think BSON is fine as the TOC label, but the actual page title might need to be longer - "Work with BSON Data"? |
||
Time Series </data-formats/time-series> | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.. _kotlin-sync-custom-types: | ||
|
||
============ | ||
Custom Types | ||
============ | ||
|
||
.. contents:: On this page | ||
:local: | ||
:backlinks: none | ||
:depth: 2 | ||
:class: singlecol | ||
|
||
.. facet:: | ||
:name: genre | ||
:values: reference | ||
|
||
.. meta:: | ||
:description: Learn how to use the Kotlin Sync driver to encode and decode custom types, including defining type codecs, using type registries, and implementing fallback encoders. | ||
:keywords: bson, uuid, date, time | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:maxdepth: 1 | ||
|
||
Serialization </data-formats/serialization> | ||
Type Codecs </data-formats/codecs> |
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: based on the TOC spreadsheet, I think the TOC label should be "Stable API" and the page title "Connect with Stable API"