Skip to content
Snippets Groups Projects
Commit b579cb41 authored by Andreas Gärtner's avatar Andreas Gärtner
Browse files

Task #15766: Add views for round independed answer count

parent 9b1622a2
No related merge requests found
......@@ -45,10 +45,18 @@
"map": "function(doc) { if (doc.type == 'skill_question_answer') { emit([doc.questionId, doc.piRound, doc.answerText], 1); }}",
"reduce": "_sum"
},
"count_all_answers_by_question": {
"map": "function(doc) { if (doc.type == 'skill_question_answer') { emit([doc.questionId, doc.answerText], 1); }}",
"reduce": "_sum"
},
"count_total_answers_by_question_and_piround": {
"map": "function(doc) { if (doc.type == 'skill_question_answer') { emit([doc.questionId, doc.piRound], 1); }}",
"reduce": "_sum"
},
"count_total_answers_by_question": {
"map": "function(doc) { if (doc.type == 'skill_question_answer') { emit(doc.questionId, doc); }}",
"reduce": "_count"
},
"count_abstention_answers_by_question": {
"map": "function(doc) { if (doc.type == 'skill_question_answer' && doc.abstention) { emit(doc.questionId, doc); } }",
"reduce": "_count"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment