tagging - CouchDB: query for "documents tagged with A or B"? -


Is there a way to ask any method for documents tagged with tagA or tag B ?

{"key": ["tag a", "tag b"], "include_docs": true} with a view with a map Request a Post Request Function (DOC) {doc.tags.forEach} (work (tag) {emit (tag, 1)}}}

should do this :)

Query Options in section


Comments