Skip to content
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-27817 manual tagging for docs-node repo #804

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
Compatibility
=============

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: node.js

.. contents:: On this page
:local:
:backlinks: none
Expand Down
7 changes: 7 additions & 0 deletions source/fundamentals/connection.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Connection

.. default-domain:: mongodb

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: node.js

.. toctree::

/fundamentals/connection/connect
Expand Down
7 changes: 7 additions & 0 deletions source/fundamentals/connection/connect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
Connection Guide
================

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: node.js

.. contents:: On this page
:local:
:backlinks: none
Expand Down
7 changes: 7 additions & 0 deletions source/fundamentals/crud.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ CRUD Operations

.. default-domain:: mongodb

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: node.js

.. toctree::
:caption: CRUD Operations

Expand Down
7 changes: 7 additions & 0 deletions source/fundamentals/crud/read-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Read Operations

.. default-domain:: mongodb

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: code example, node.js, sample dataset

- :doc:`/fundamentals/crud/read-operations/retrieve`
- :doc:`/fundamentals/crud/read-operations/cursor`
- :doc:`/fundamentals/crud/read-operations/distinct`
Expand Down
3 changes: 3 additions & 0 deletions source/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
MongoDB Node Driver
===================

.. meta::
:keywords: node.js

.. _node-driver-landing:

.. toctree::
Expand Down
7 changes: 7 additions & 0 deletions source/quick-reference.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Quick Reference

.. default-domain:: mongodb

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: node.js

This page shows the driver syntax for several MongoDB commands and links to
their related reference and API documentation.

Expand Down
7 changes: 7 additions & 0 deletions source/quick-start.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
Quick Start
===========

.. facet::
:type: genre
:values: tutorial

.. meta::
:keywords: node.js

.. contents:: On this page
:local:
:backlinks: none
Expand Down
7 changes: 7 additions & 0 deletions source/usage-examples.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Usage Examples

.. default-domain:: mongodb

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: node.js

.. contents:: On this page
:local:
:backlinks: none
Expand Down
7 changes: 7 additions & 0 deletions source/usage-examples/find.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Find Multiple Documents

.. default-domain:: mongodb

.. facet::
:type: genre
:values: reference

.. meta::
:keywords: code example, node.js, sample dataset

You can query for multiple documents in a collection with
``collection.find()``. The ``find()`` method uses a query document that you
provide to match the subset of the documents in the collection that match the
Expand Down
7 changes: 7 additions & 0 deletions source/usage-examples/findOne.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Find a Document

.. default-domain:: mongodb

.. facet::
:type: genre
:values: tutorial

.. meta::
:keywords: code example, node.js, sample dataset

You can query for a single document in a collection with the
``collection.findOne()`` method. The ``findOne()`` method uses a query
document that you provide to match only the subset of the documents in the
Expand Down
7 changes: 7 additions & 0 deletions source/usage-examples/insertOne.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Insert a Document

.. default-domain:: mongodb

.. facet::
:type: genre
:values: tutorial

.. meta::
:keywords: code example, node.js, sample dataset

You can insert a document into a collection using the
`collection.insertOne() <{+api+}/classes/Collection.html#insertOne>`__ method. To
insert a document, define an object that contains the fields and values that
Expand Down