From e3e85c5f3b6473bd816c651370e9909fddd9b9f2 Mon Sep 17 00:00:00 2001 From: David Jay Date: Thu, 16 Feb 2017 17:18:36 -0500 Subject: [PATCH] Fixing error when posting comment. --- client/coral-framework/graphql/mutations/postComment.graphql | 1 + 1 file changed, 1 insertion(+) diff --git a/client/coral-framework/graphql/mutations/postComment.graphql b/client/coral-framework/graphql/mutations/postComment.graphql index 3840d66c2..110ab4b4e 100644 --- a/client/coral-framework/graphql/mutations/postComment.graphql +++ b/client/coral-framework/graphql/mutations/postComment.graphql @@ -4,6 +4,7 @@ mutation CreateComment ($asset_id: ID!, $parent_id: ID, $body: String!) { createComment(asset_id:$asset_id, parent_id:$parent_id, body:$body) { comment { ...commentView + replyCount replies { ...commentView }