From 2afd0706cc61f24dbb5fcf0b257d8921f4a63098 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 1 Mar 2021 15:59:03 +0100 Subject: [PATCH] fix missing comma after resolvinf conflicts --- backend/src/schema/resolvers/searches.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/schema/resolvers/searches.js b/backend/src/schema/resolvers/searches.js index 898b7659f..60fd4318f 100644 --- a/backend/src/schema/resolvers/searches.js +++ b/backend/src/schema/resolvers/searches.js @@ -39,7 +39,7 @@ const searchPostsSetup = { author: properties(author), commentsCount: toString(size(comments)), shoutedCount: toString(size(shouter)), - clickedCount: toString(resource.clickedCount) + clickedCount: toString(resource.clickedCount), viewedTeaserCount: toString(resource.viewedTeaserCount) }`, limit: 'LIMIT $limit',