Skip to content

Commit f80c59e

Browse files
committed
fix:fix the search json import in getQuestionKeyword
1 parent 66ef393 commit f80c59e

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
import { getQuestionKeywordJson } from '#resources/headers/questionKeywordJson.js'
21
import { graphql } from '#common/utils/http/graphql.js'
2+
import {getQuestionSearchJson} from "#resources/headers/questionSearchJson.js";
33

44
export async function getQuestionByKeyword(keyword) {
5-
const questionData = await graphql(getQuestionKeywordJson(keyword.toString()))
5+
const questionData = await graphql(getQuestionSearchJson(keyword.toString()))
6+
console.log(questionData)
67
return questionData?.data?.problemsetQuestionList?.questions
78
}
9+

resources/headers/questionKeywordJson.js

-7
This file was deleted.

0 commit comments

Comments
 (0)