We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 686d239 commit a82060aCopy full SHA for a82060a
graph/comment.graphqls
@@ -0,0 +1,20 @@
1
+type Comment {
2
+ id: ID!
3
+ postId: Int
4
+ score: Int
5
+ text: String
6
+ creationDate: Time
7
+ userDisplayName: String
8
+ userId: Int
9
+ contentLicense: String
10
+}
11
+
12
+type CommentEdge {
13
+ cursor: String!
14
+ node: Comment!
15
16
17
+type CommentsCursor {
18
+ edges: [CommentEdge]!
19
+ pageInfo: PageInfo
20
0 commit comments