Skip to content

Instantly share code, notes, and snippets.

@lastid
lastid / testmongo
Last active December 23, 2015 11:49
How to get the best 2 comment or reply with only 1 request to mongodb Expected result: [ {_id:'c1', text: 'Comment 1', votes: 3, type: 'c'}, {_id: 'r1', text: 'Reply 1', votes: 2, type: 'r'} ]
db.playground.insert(
{
_id: 'c1',
text: 'Comment 1',
replies: [
{_id: 'r1', text: 'Reply 1'}
],
votes: [
{ type : 'c', _id: 'c1', v: 3},
{ type : 'r', _id: 'r1', v: 2}