18 lines
297 B
GraphQL
18 lines
297 B
GraphQL
query Problems ($username: String!) {
|
|
allQuestionsCount {
|
|
difficulty
|
|
count
|
|
}
|
|
matchedUser(username: $username) {
|
|
problemsSolvedBeatsStats {
|
|
difficulty
|
|
percentage
|
|
}
|
|
submitStatsGlobal {
|
|
acSubmissionNum {
|
|
difficulty
|
|
count
|
|
}
|
|
}
|
|
}
|
|
} |