mirror of
https://github.com/wassname/talk.git
synced 2026-08-09 12:30:42 +08:00
Add some comments
This commit is contained in:
@@ -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!]!
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user