Merge branch 'master' into actions

This commit is contained in:
David Jay
2017-02-09 17:14:53 -08:00
committed by GitHub
5 changed files with 107 additions and 3 deletions
+7 -1
View File
@@ -112,7 +112,10 @@ type Comment {
# The user who authored the comment.
user: User
# The replies that were made to the comment.
# the recent replies made against this comment.
recentReplies: [Comment]
# the replies that were made to the comment.
replies(sort: SORT_ORDER = CHRONOLOGICAL, limit: Int = 3): [Comment]
# The count of replies on a comment.
@@ -273,6 +276,9 @@ type Asset {
# The URL that the asset is located on.
url: String
# Returns recent comments
recentComments: [Comment]
# The top level comments that are attached to the asset.
comments(sort: SORT_ORDER = REVERSE_CHRONOLOGICAL, limit: Int = 10): [Comment]