Skip to content

Commit a82060a

Browse files
committed
Add allUsers and allComments v0
1 parent 686d239 commit a82060a

File tree

7 files changed

+1127
-180
lines changed

7 files changed

+1127
-180
lines changed

graph/comment.graphqls

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)