From 6874d9cca954b8e2a96b38bdede4fbafb8705c2e Mon Sep 17 00:00:00 2001 From: Mohammad Hunan Chughtai Date: Wed, 5 May 2021 15:40:12 -0400 Subject: [PATCH 1/2] new data types for node --- source/sdk/node/data-types.txt | 29 +++++++++++++++++++ source/sdk/node/data-types/collections.txt | 16 ++++++++++ source/sdk/node/data-types/dictionaries.txt | 18 ++++++++++++ .../sdk/node/data-types/embedded-objects.txt | 13 +++++++++ source/sdk/node/data-types/field-types.txt | 16 ++++++++++ source/sdk/node/data-types/mixed.txt | 17 +++++++++++ source/sdk/node/data-types/sets.txt | 18 ++++++++++++ source/sdk/node/data-types/uuid.txt | 17 +++++++++++ 8 files changed, 144 insertions(+) create mode 100644 source/sdk/node/data-types/collections.txt create mode 100644 source/sdk/node/data-types/dictionaries.txt create mode 100644 source/sdk/node/data-types/embedded-objects.txt create mode 100644 source/sdk/node/data-types/field-types.txt create mode 100644 source/sdk/node/data-types/mixed.txt create mode 100644 source/sdk/node/data-types/sets.txt create mode 100644 source/sdk/node/data-types/uuid.txt diff --git a/source/sdk/node/data-types.txt b/source/sdk/node/data-types.txt index 983cc3d950..af7774d7af 100644 --- a/source/sdk/node/data-types.txt +++ b/source/sdk/node/data-types.txt @@ -1,3 +1,32 @@ +.. _node-data-types: + ============================== Realm Data Types - Node.js SDK ============================== +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. toctree:: + :titlesonly: + :hidden: + + Field Types + Collections + Dictionaries + Sets + Mixed + UUID + Embedded Objects + +- :doc:`Field Types ` +- :doc:`Collections ` +- :doc:`Dictionaries ` +- :doc:`Sets ` +- :doc:`Mixed ` +- :doc:`UUID ` +- :doc:`Embedded Objects ` \ No newline at end of file diff --git a/source/sdk/node/data-types/collections.txt b/source/sdk/node/data-types/collections.txt new file mode 100644 index 0000000000..bf8be9eead --- /dev/null +++ b/source/sdk/node/data-types/collections.txt @@ -0,0 +1,16 @@ +.. _node-collections: + +========================= +Collections - Node.js SDK +========================= + +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +Overview +-------- \ No newline at end of file diff --git a/source/sdk/node/data-types/dictionaries.txt b/source/sdk/node/data-types/dictionaries.txt new file mode 100644 index 0000000000..de4a5419d3 --- /dev/null +++ b/source/sdk/node/data-types/dictionaries.txt @@ -0,0 +1,18 @@ +.. _node-dictionaries: + +========================== +Dictionaries - Node.js SDK +========================== + +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. versionadded:: 10.5.0-beta.1 + +Overview +-------- \ No newline at end of file diff --git a/source/sdk/node/data-types/embedded-objects.txt b/source/sdk/node/data-types/embedded-objects.txt new file mode 100644 index 0000000000..53d6e002b7 --- /dev/null +++ b/source/sdk/node/data-types/embedded-objects.txt @@ -0,0 +1,13 @@ +.. _node-embedded-objects: + +============================== +Embedded Objects - Node.js SDK +============================== + +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol diff --git a/source/sdk/node/data-types/field-types.txt b/source/sdk/node/data-types/field-types.txt new file mode 100644 index 0000000000..e3685b3eb4 --- /dev/null +++ b/source/sdk/node/data-types/field-types.txt @@ -0,0 +1,16 @@ +.. _node-field-types: + +========================= +Field Types - Node.js SDK +========================= + +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + + +{+client-database+} supports the following field data types: diff --git a/source/sdk/node/data-types/mixed.txt b/source/sdk/node/data-types/mixed.txt new file mode 100644 index 0000000000..4c2748f733 --- /dev/null +++ b/source/sdk/node/data-types/mixed.txt @@ -0,0 +1,17 @@ +.. _node-mixed: + +=================== +Mixed - Node.js SDK +=================== +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. versionadded:: 10.5.0-beta.1 + +Overview +-------- \ No newline at end of file diff --git a/source/sdk/node/data-types/sets.txt b/source/sdk/node/data-types/sets.txt new file mode 100644 index 0000000000..513981ba76 --- /dev/null +++ b/source/sdk/node/data-types/sets.txt @@ -0,0 +1,18 @@ +.. _node-sets: + +================== +Sets - Node.js SDK +================== + +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. versionadded:: 10.5.0-beta.1 + +Overview +-------- \ No newline at end of file diff --git a/source/sdk/node/data-types/uuid.txt b/source/sdk/node/data-types/uuid.txt new file mode 100644 index 0000000000..739a842f36 --- /dev/null +++ b/source/sdk/node/data-types/uuid.txt @@ -0,0 +1,17 @@ +.. _node-uuid: + +================== +UUID - Node.js SDK +================== +.. default-domain:: mongodb + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +.. versionadded:: 10.5.0-beta.1 + +Overview +-------- \ No newline at end of file From dc7d479a998f46e4ac7d6843d2b29ef3ebe41dfb Mon Sep 17 00:00:00 2001 From: Mohammad Hunan Chughtai Date: Wed, 5 May 2021 15:54:12 -0400 Subject: [PATCH 2/2] added data types to TOC --- source/sdk/node.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/sdk/node.txt b/source/sdk/node.txt index 71100930c5..c205fa7d31 100644 --- a/source/sdk/node.txt +++ b/source/sdk/node.txt @@ -12,6 +12,7 @@ MongoDB Realm Node.js SDK Quick Start Quick Start with Sync Fundamentals + Data Types Usage Examples Integration Guides Advanced Guides