Skip to content

Instantly share code, notes, and snippets.

@lennart
Created November 25, 2009 08:00
Show Gist options
  • Select an option

  • Save lennart/242550 to your computer and use it in GitHub Desktop.

Select an option

Save lennart/242550 to your computer and use it in GitHub Desktop.
function(doc) {
if(!doc['descends_from'] && doc['body']) {
emit([doc._id],1);
}
if(doc['descends_from'] && doc['body']) {
emit(doc.descends_from.concat([doc.created_at,doc._id]),1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment