Skip to content

Instantly share code, notes, and snippets.

@sr
Created October 30, 2008 00:05
Show Gist options
  • Save sr/20864 to your computer and use it in GitHub Desktop.
Save sr/20864 to your computer and use it in GitHub Desktop.
function(doc) {
if ( doc.type == "collection" ) {
emit([doc._id, 0], doc);
} else if ( doc.type == "entry" ) {
emit([doc.collection, 1, doc.edited], doc);
}
}
function(doc) {
if ( doc.type == "collection" ) {
emit([doc._id, 0], doc);
} else if ( doc.type == "entry" ) {
emit([doc.collection, 1], doc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment