Skip to content

Commit cdd0de3

Browse files
committed
# Conflicts: # docs/40-using-arrays/2-search-inside-objects-in-arrays.mdx
2 parents 1573aa1 + 89ac867 commit cdd0de3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/40-using-arrays/2-search-inside-objects-in-arrays.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let nineNinetyNine = {$match: {"attributes.key": "msrp", "attributes.value": 9.9
3838
let showOnlyTheseFields = {$project: {_id: 0, title: 1, year: 1, totalInventory: 1, available: 1, "attributes": 1}};
3939

4040
db.books.aggregate([
41-
firstEditions,
41+
nineNinetyNine,
4242
showOnlyTheseFields,
4343
]);
4444
```
@@ -61,4 +61,4 @@ db.books.aggregate([
6161
{ $match: {_id: "0002158698"} },
6262
{ $unwind : "$genres" },
6363
{ $project: {vectorizedSynopsis: 0, attributes: 0}}
64-
]);
64+
]);

0 commit comments

Comments
 (0)