leetcode-api 0.6.0

leetcode api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query problemsetQuestionList(
  $categorySlug: String
  $limit: Int
  $skip: Int
  $filters: QuestionListFilterInput
) {
  problemsetQuestionList: questionList(
    categorySlug: $categorySlug
    limit: $limit
    skip: $skip
    filters: $filters
  ) {
    total: totalNum
  }
}