Skip to content

Instantly share code, notes, and snippets.

@rifki
Created July 11, 2015 20:02
Show Gist options
  • Save rifki/3f58be7ec36028d0a693 to your computer and use it in GitHub Desktop.
Save rifki/3f58be7ec36028d0a693 to your computer and use it in GitHub Desktop.
{
"_id": "_design/get_blog_posts",
"language": "javascript",
"views": {
"all": {
"map": "function(doc) { emit(doc._id, doc); } "
},
"by_date": {
"map": "function(doc) { if (doc) { emit(doc.created_at, null); } }"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment