Skip to content

Instantly share code, notes, and snippets.

@rin
Created September 10, 2014 16:37
Show Gist options
  • Save rin/0f9a77756e4ba56b1a39 to your computer and use it in GitHub Desktop.
Save rin/0f9a77756e4ba56b1a39 to your computer and use it in GitHub Desktop.
map function for the withSourceCases view
function(doc) {
if(doc.SourceCase !== 'undefined'){
emit(doc._id, {
lastName: doc.Surname,
otherNames: doc.OtherNames,
sourceCase: doc.SourceCase,
sourceCaseId: doc.sourcerCaseId
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment