Skip to content

Commit c2a53e5

Browse files
committed
Fixed sample for new data
1 parent 5903b92 commit c2a53e5

File tree

1 file changed

+21
-49
lines changed

1 file changed

+21
-49
lines changed

docs/30-simple-queries/3-project.mdx

Lines changed: 21 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -6,81 +6,53 @@ A document from the `books` collection looks like:
66

77
```js
88
{
9-
_id: '0765342502',
10-
title: 'The Green Brain',
9+
_id: '0395623650',
10+
title: 'Platero y yo / Platero and I (Spanish-English Bilingual Edition) (English and Spanish Edition)',
1111
authors: [
1212
{
13-
_id: '64cc2db4830ba29148da52be',
14-
name: 'Frank Herbert'
13+
_id: '64cc2db4830ba29148db5180',
14+
name: 'Juan Ramón Jiménez'
1515
}
1616
],
17-
pages: 224,
18-
year: 2002,
19-
synopsis: 'a Fascinating Examination Of The Fragile Balance Between Consciousness, Man, And Insect From One Of The Best-loved Science Fiction Creators Of All Time.',
20-
cover: 'https://images.isbndb.com/covers/25/08/9780765342508.jpg',
17+
pages: 64,
18+
year: 1994,
19+
synopsis: 'Selections from a classic of world literature present a picture of life in the town of Moguer, in Andalusia, Spain.\n' +
20+
'\n' +
21+
'\n' +
22+
' Presents a picture of life in the town of Moguer, in Andalusia, Spain, as seen through the eyes of a wandering poet and his faithful donkey.\n',
23+
cover: 'https://images.isbndb.com/covers/36/57/9780395623657.jpg',
2124
attributes: [
2225
{
2326
key: 'edition',
24-
value: '1st'
27+
value: 'F First Edition Thus'
2528
},
2629
{
2730
key: 'dimensions',
28-
value: 'Height: 1.111 Inches, Length: 1.111 Inches, Weight: 0.2 Pounds, Width: 1.111 Inches'
31+
value: 'Height: 10.499979 Inches, Length: 6.999986 Inches, Weight: 2.0502990366 Pounds, Width: 0.12499975 Inches'
2932
},
3033
{
3134
key: 'isbn13',
32-
value: '9780765342508'
35+
value: '9780395623657'
3336
},
3437
{
3538
key: 'msrp',
36-
value: 6.99
39+
value: 1.99
3740
},
3841
{
3942
key: 'isbn',
40-
value: '0765342502'
43+
value: '0395623650'
4144
},
4245
{
4346
key: 'isbn10',
44-
value: '0765342502'
47+
value: '0395623650'
4548
}
4649
],
4750
totalInventory: 1,
4851
available: 1,
49-
binding: 'Mass Market Paperback',
52+
binding: 'Hardcover',
5053
language: 'en',
51-
longTitle: 'The Green Brain',
52-
publisher: 'Tor Books',
53-
reviews: [
54-
{
55-
text: 'I absolutely loved this book! The characters were well-developed and the plot was gripping. The writing style was engaging and kept me hooked until the very end. Highly recommend!',
56-
rating: 4,
57-
name: 'Phoebe Silva',
58-
timestamp: 2023-03-30T11:56:44.519Z,
59-
_id: ObjectId("6511eb21ace76077e045b2d7")
60-
},
61-
{
62-
text: 'I really enjoyed this book. The story kept me engaged from beginning to end and the characters were well-developed. The writing style was captivating and the plot had several unexpected twists and turns. Overall, a great read that I would highly recommend!',
63-
rating: 4,
64-
name: 'عرشيا کوتی',
65-
timestamp: 2022-05-30T15:15:43.377Z,
66-
_id: ObjectId("6511eb20ace76077e045b2d5")
67-
},
68-
{
69-
text: "This book is an absolute masterpiece. The storytelling is captivating and the characters are so well-developed. I couldn't put it down and found myself fully immersed in the story from beginning to end. The writing style is beautiful and the plot twists kept me on the edge of my seat. I highly recommend this book to anyone who enjoys a thought-provoking and emotionally charged read. It's truly a gem!",
70-
rating: 5,
71-
name: 'Malo Lecomte',
72-
timestamp: 2021-08-27T20:34:33.710Z,
73-
_id: ObjectId("6511eb21ace76077e045b2d6")
74-
}
75-
],
76-
vectorizedSynopsis: [
77-
0.020951554,
78-
0.001816311,
79-
0.00775048,
80-
-0.01312131,
81-
0.01894414,
82-
0.006397802,
83-
-0.027944269,
54+
longTitle: 'Platero y yo / Platero and I (Spanish-English Bilingual Edition) (English and Spanish Edition)',
55+
publisher: 'Clarion Books'
8456
}
8557
```
8658

@@ -121,7 +93,7 @@ db.books.aggregate([{$project: {title:1, cover: 1}}])
12193
<div>
12294

12395
```js
124-
db.books.aggregate([{$project: {_id_:0, attributes: 0, cover: 0}}])
96+
db.books.aggregate([{$project: {_id :0, attributes: 0, cover: 0}}])
12597
```
12698
</div>
12799
</details>

0 commit comments

Comments
 (0)