feat(plugins/leetcode): add plugin (#1213) [skip ci]

This commit is contained in:
Simon Lecoq
2022-09-05 21:18:20 -04:00
committed by GitHub
parent 5747703b94
commit 2cf5a3990a
14 changed files with 426 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
query Problems ($username: String!) {
allQuestionsCount {
difficulty
count
}
matchedUser(username: $username) {
problemsSolvedBeatsStats {
difficulty
percentage
}
submitStatsGlobal {
acSubmissionNum {
difficulty
count
}
}
}
}