Skip to content

Commit 17d9bfd

Browse files
committed
Fix some broken MongoDB links
1 parent 3399eab commit 17d9bfd

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/scripting/db/db.f.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Similar to a [MongoDB db.collection.find()](https://www.mongodb.com/docs/manual/
1818

1919
Selection filter for documents in the script owner's database. An empty query ( `{}` ) selects all documents.
2020

21-
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/operator/query/) can be used for conditional matching and other advanced querying functionality.
21+
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/mql/query-predicates/) can be used for conditional matching and other advanced querying functionality.
2222

2323
### projection
2424

docs/scripting/db/db.u.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Similar to a [MongoDB db.collection.update()](https://www.mongodb.com/docs/manua
1818

1919
Selection filter for documents in the script owner's database. An empty query ( `{}` ) selects all documents.
2020

21-
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/operator/query/) can be used for conditional matching and other advanced querying functionality.
21+
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/mql/query-predicates/) can be used for conditional matching and other advanced querying functionality.
2222

2323
### update
2424

25-
Can be either a document object (in which case all matches will be replaced by the new document), _or_ an "update document" containing [MongoDB update operators](https://www.mongodb.com/docs/manual/reference/operator/update/).
25+
Can be either a document object (in which case all matches will be replaced by the new document), _or_ an "update document" containing [MongoDB update operators](https://www.mongodb.com/docs/manual/reference/mql/update/).
2626

2727
Update operators can be used to set new individual values, increment integer values atomically, pop and push to arrays, and more. For a comprehensive list, please see MongoDB's update operator documentation above.
2828

docs/scripting/db/db.u1.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Similar to a [MongoDB db.collection.updateOne()](https://www.mongodb.com/docs/ma
1818

1919
Selection filter for documents in the script owner's database. An empty query ( `{}` ) selects all documents.
2020

21-
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/operator/query/) can be used for conditional matching and other advanced querying functionality.
21+
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/mql/query-predicates/) can be used for conditional matching and other advanced querying functionality.
2222

2323
### update
2424

25-
Can be either a document object (in which case all matches will be replaced by the new document), _or_ an "update document" containing [MongoDB update operators](https://www.mongodb.com/docs/manual/reference/operator/update/).
25+
Can be either a document object (in which case all matches will be replaced by the new document), _or_ an "update document" containing [MongoDB update operators](https://www.mongodb.com/docs/manual/reference/mql/update/).
2626

2727
Update operators can be used to set new individual values, increment integer values atomically, pop and push to arrays, and more. For a comprehensive list, please see MongoDB's update operator documentation above.
2828

docs/scripting/db/db.us.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Similar to a [MongoDB db.collection.update()](https://www.mongodb.com/docs/manua
1818

1919
Selection filter for documents in the script owner's database. An empty query ( `{}` ) selects all documents.
2020

21-
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/operator/query/) can be used for conditional matching and other advanced querying functionality.
21+
Various [MongoDB query operators](https://www.mongodb.com/docs/manual/reference/mql/query-predicates/) can be used for conditional matching and other advanced querying functionality.
2222

2323
If no match is found, this query will be used as the basis for a new document, ready for insertion.
2424

2525
### update
2626

27-
Can be either a document object (in which case all matches will be replaced by the new document), _or_ an "update document" containing [MongoDB update operators](https://www.mongodb.com/docs/manual/reference/operator/update/).
27+
Can be either a document object (in which case all matches will be replaced by the new document), _or_ an "update document" containing [MongoDB update operators](https://www.mongodb.com/docs/manual/reference/mql/update/).
2828

2929
Update operators can be used to set new individual values, increment integer values atomically, pop and push to arrays, and more. For a comprehensive list, please see MongoDB's update operator documentation above.
3030

0 commit comments

Comments
 (0)