Add some comments

This commit is contained in:
Chi Vinh Le
2017-06-01 19:41:08 +07:00
parent ebdd586d1e
commit 5245755d49
3 changed files with 17 additions and 8 deletions
+9
View File
@@ -253,10 +253,19 @@ type Comment {
editing: EditInfo
}
# CommentConnection represents a paginable subset of a comment list.
type CommentConnection {
# Indicates that there are more comments after this subset.
hasNextPage: Boolean!
# Cursor of first comment in subset.
startCursor: Date
# Cursor of last comment in subset.
endCursor: Date
# Subset of comments.
nodes: [Comment!]!
}