From 8e1f7050fdc0bb4d5b6af1be9d9bfd7ad29c0804 Mon Sep 17 00:00:00 2001
From: Christoph Thelen <christoph.thelen@mni.thm.de>
Date: Wed, 11 Mar 2020 12:44:18 +0100
Subject: [PATCH] Only emit properties that are required

---
 src/main/resources/views/answer | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/views/answer b/src/main/resources/views/answer
index 017a518..e9da048 100644
--- a/src/main/resources/views/answer
+++ b/src/main/resources/views/answer
@@ -21,7 +21,7 @@
 			"map":"function(doc) { if (doc.type == 'skill_question_answer') { emit(doc.questionId, doc._id); }}"
 		},
 		"by_questionid_piround":{
-			"map":"function(doc) { if (doc.type == 'skill_question_answer') { emit([doc.questionId, doc.piRound], doc); }}"
+			"map":"function(doc) { if (doc.type == 'skill_question_answer') { emit([doc.questionId, doc.piRound], { answerText: doc.answerText, user: doc.user }); }}"
 		}
 	}
 }
-- 
GitLab