This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_id": "573a1390f29313caabcd6223", | |
"comments": [ | |
{ | |
"_id": "5a9427648b0beebeb69579cc", | |
"comment": "Rem officiis eaque repellendus amet eos doloribus. Porro dolor voluptatum voluptates neque culpa molestias. Voluptate unde nulla temporibus ullam.", | |
"date": "2012-03-26T05:30:00+05:30", | |
"email": "andrea_le@fakegmail.com", | |
"movie_id": "573a1390f29313caabcd6223", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_id": "573a1390f29313caabcd6223", | |
"comments": [ | |
{ | |
"_id": "5a9427648b0beebeb69579cc", | |
"comment": "Rem officiis eaque repellendus amet eos doloribus. Porro dolor voluptatum voluptates neque culpa molestias. Voluptate unde nulla temporibus ullam.", | |
"date": "2012-03-26T05:30:00+05:30", | |
"email": "andrea_le@fakegmail.com", | |
"movie_id": "573a1390f29313caabcd6223", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
$lookup: | |
{ | |
from: <collection to join>, | |
localField: <field from the input documents>, | |
foreignField: <field from the documents of the "from" collection>, | |
as: <output array field> | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id" : "total_vote", | |
"vote_count" : NumberInt(271026594) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.movies.aggregate( | |
// Pipeline | |
[ | |
// Stage 1 | |
{ | |
$match: { | |
// conditional query | |
"imdb.rating": { | |
$lt: 7.5 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id" : 1.0, | |
"value" : 271026594.0 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.movies.mapReduce( | |
// map | |
function(){ | |
emit(1,this.imdb.votes); | |
}, | |
// reduce | |
function(key,vals){ | |
var count = 0; | |
vals.forEach(function(v) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"email" : "andrea_le@fakegmail.com", | |
"name" : "Andrea Le" | |
}, | |
{ | |
"email" : "anthony_cline@fakegmail.com", | |
"name" : "Anthony Cline" | |
}, | |
{ | |
"email" : "emily_ellis@fakegmail.com", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.user_data_list.find({}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ok" : 1.0 | |
} |
NewerOlder