From fc31a2882ddd2728534d9f3d7a5907a04e94570e Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Wed, 12 Jul 2017 21:05:29 +0700 Subject: [PATCH] Add a comment --- graph/typeDefs.graphql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/graph/typeDefs.graphql b/graph/typeDefs.graphql index b9febbf24..a154f9f90 100644 --- a/graph/typeDefs.graphql +++ b/graph/typeDefs.graphql @@ -569,13 +569,15 @@ type Asset { # Returns recent comments recentComments: [Comment!] - # The top level comments that are attached to the asset. + # The comments that are attached to the asset. + # If `deep` is true, it will return comments of all depths, + # otherwise only top-level comments are returned. comments( sort: SORT_ORDER = REVERSE_CHRONOLOGICAL, limit: Int = 10, - deep: Boolean, excludeIgnored: Boolean, tags: [String!] + deep: Boolean, ): CommentConnection! # The count of top level comments on the asset.