Merge branch 'master' into flagged-count

This commit is contained in:
Belén Curcio
2017-09-18 13:19:41 -03:00
committed by GitHub
40 changed files with 684 additions and 503 deletions
+6 -1
View File
@@ -242,6 +242,10 @@ enum COMMENT_STATUS {
# new comments that haven't been moderated yet are referred to as
# "premoderated" or "premod" comments.
PREMOD
# SYSTEM_WITHHELD represents a comment that was withheld by the system because
# it was flagged by an internal process for further review.
SYSTEM_WITHHELD
}
# The types of action there are as enums.
@@ -378,7 +382,8 @@ type Comment {
# the replies that were made to the comment.
replies(query: RepliesQuery = {}): CommentConnection!
# The count of replies on a comment.
# replyCount is the number of replies with a depth of 1. Only direct replies
# to this comment are counted.
replyCount: Int
# Actions completed on the parent. Requires the `ADMIN` role.