OBJECT
UserStats
link GraphQL Schema definition
1 type UserStats { 2 3 : UserStatsAllTime! 4 5 : Int! 6 7 : Int! 8 9 : Int! 10 11 : Int! 12 13 # Overall project stats for the past month 14 : MonthlyStats 15 16 # Recent stats for the user's projects 17 (: String, : Int): ProjectStatsConnection 18 19 : Int! 20 21 }