Skip to content

Instantly share code, notes, and snippets.

@drsm79
Last active December 12, 2015 09:48
Show Gist options
  • Save drsm79/4753925 to your computer and use it in GitHub Desktop.
Save drsm79/4753925 to your computer and use it in GitHub Desktop.
CouchDB attachments by content type
function(doc) {
if (doc._attachments){
for (a in doc._attachments){
emit(doc._attachments[a].content_type, 1);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment