OBJECT

UserStats

link GraphQL Schema definition

1type UserStats {
2
3allTime: UserStatsAllTime!
4
5appreciations: Int!
6
7comments: Int!
8
9followers: Int!
10
11following: Int!
12
13# Overall project stats for the past month
14monthly: MonthlyStats
15
16# Recent stats for the user's projects
17projects(after: String, first: Int): ProjectStatsConnection
18
19views: Int!
20
21}

link Required by