UNPKG

@iflow-mcp/leetcode-mcp-server

Version:

MCP Server for LeetCode API (supports leetcode.com and leetcode.cn)

5 lines (4 loc) 424 B
/** * GraphQL query for fetching a solution's detail on LeetCode CN */ export declare const SOLUTION_ARTICLE_DETAIL_QUERY = "\nquery discussTopic($slug: String) {\n solutionArticle(slug: $slug, orderBy: DEFAULT) {\n title\n content\n slug\n tags {\n slug\n }\n topic {\n id\n }\n question {\n titleSlug\n }\n next {\n slug\n }\n prev {\n slug\n }\n }\n}";