You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/utils/snooty-ast-to-md.test.js
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -96,27 +96,27 @@ For additional patterns and use cases, see also: [Building with Patterns](https:
96
96
97
97
The following documents provide overviews of various data modeling patterns and common schema design considerations:
98
98
99
-
Examples for modeling relationships between documents.
99
+
[Model Relationships Between Documents](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/applications/data-models-relationships/) - Examples for modeling relationships between documents.
100
100
101
-
Presents a data model that uses [embedded documents](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-embedding) to describe one-to-one relationships between connected data.
101
+
[Model One-to-One Relationships with Embedded Documents](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-embedded-one-to-one-relationships-between-documents/) - Presents a data model that uses [embedded documents](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-embedding) to describe one-to-one relationships between connected data.
102
102
103
-
Presents a data model that uses [embedded documents](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-embedding) to describe one-to-many relationships between connected data.
103
+
[Model One-to-Many Relationships with Embedded Documents](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-embedded-one-to-many-relationships-between-documents/) - Presents a data model that uses [embedded documents](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-embedding) to describe one-to-many relationships between connected data.
104
104
105
-
Presents a data model that uses [references](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-referencing) to describe one-to-many relationships between documents.
105
+
[Model One-to-Many Relationships with Document References](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-referenced-one-to-many-relationships-between-documents/) - Presents a data model that uses [references](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-referencing) to describe one-to-many relationships between documents.
106
106
107
-
Examples for modeling tree structures.
107
+
[Model Tree Structures](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/applications/data-models-tree-structures/) - Examples for modeling tree structures.
108
108
109
-
Presents a data model that organizes documents in a tree-like structure by storing [references](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-referencing) to "parent" nodes in "child" nodes.
109
+
[Model Tree Structures with Parent References](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-tree-structures-with-parent-references/) - Presents a data model that organizes documents in a tree-like structure by storing [references](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-referencing) to "parent" nodes in "child" nodes.
110
110
111
-
Presents a data model that organizes documents in a tree-like structure by storing [references](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-referencing) to "child" nodes in "parent" nodes.
111
+
[Model Tree Structures with Child References](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-tree-structures-with-child-references/) - Presents a data model that organizes documents in a tree-like structure by storing [references](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/core/data-model-design/#std-label-data-modeling-referencing) to "child" nodes in "parent" nodes.
112
112
113
113
See [Model Tree Structures](https://mongodbcom-cdn.staging.corp.mongodb.com/${siteBasePrefix}/applications/data-models-tree-structures/) for additional examples of data models for tree structures.
114
114
115
-
Examples for models for specific application contexts.
115
+
[Model Specific Application Contexts](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/applications/data-models-applications/) - Examples for models for specific application contexts.
116
116
117
-
Illustrates how embedding fields related to an atomic update within the same document ensures that the fields are in sync.
117
+
[Model Data for Atomic Operations](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-data-for-atomic-operations/) - Illustrates how embedding fields related to an atomic update within the same document ensures that the fields are in sync.
118
118
119
-
Describes one method for supporting keyword search by storing keywords in an array in the same document as the text field. Combined with a multi-key index, this pattern can support application's keyword search operations.
119
+
[Model Data to Support Keyword Search](https://mongodbcom-cdn.staging.corp.mongodb.com/docs/example-project/tutorial/model-data-for-keyword-search/) - Describes one method for supporting keyword search by storing keywords in an array in the same document as the text field. Combined with a multi-key index, this pattern can support application's keyword search operations.
0 commit comments