mirror of
https://github.com/Xevion/leetcode.git
synced 2025-12-06 05:15:30 -06:00
23 lines
464 B
GraphQL
23 lines
464 B
GraphQL
query problemsetQuestionList($categorySlug: String, $limit: Int, $skip: Int, $filters: QuestionListFilterInput) {
|
|
problemsetQuestionList: questionList(
|
|
categorySlug: $categorySlug
|
|
limit: $limit
|
|
skip: $skip
|
|
filters: $filters
|
|
) {
|
|
total: totalNum
|
|
questions: data {
|
|
difficulty
|
|
freqBar
|
|
title
|
|
titleSlug
|
|
topicTags {
|
|
name
|
|
id
|
|
slug
|
|
}
|
|
hasSolution
|
|
hasVideoSolution
|
|
}
|
|
}
|
|
} |