From 4e5680577e1f086327b0087f86d0621e9688c82b Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Fri, 9 Jun 2017 01:17:27 +0700 Subject: [PATCH] Include public comments --- graph/resolvers/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/resolvers/util.js b/graph/resolvers/util.js index 9dd67bb0e..ef3c70865 100644 --- a/graph/resolvers/util.js +++ b/graph/resolvers/util.js @@ -9,7 +9,7 @@ const decorateWithTags = (typeResolver) => { return tags; } - return tags.filter((tag) => tag.public); + return tags.filter((t) => t.tag.permissions.public); }; };