Skip to content

Commit 14f68ae

Browse files
committed
feat: track informative reports
1 parent 5e6029b commit 14f68ae

File tree

12 files changed

+2912
-1899
lines changed

12 files changed

+2912
-1899
lines changed

Diff for: graphql/UserProfileThanks.graphql

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
query UserProfileThanks($username: String!, $pageSize: Int!) {
2+
user(username: $username) {
3+
id
4+
username
5+
thanks_items(first: $pageSize) {
6+
total_count
7+
edges {
8+
node {
9+
...ThanksItem
10+
__typename
11+
}
12+
__typename
13+
}
14+
__typename
15+
}
16+
__typename
17+
}
18+
}
19+
20+
fragment ThanksItem on ThanksItem {
21+
rank
22+
report_count
23+
total_report_count
24+
reputation
25+
team {
26+
handle
27+
}
28+
}

0 commit comments

Comments
 (0)