@@ -18,13 +18,19 @@ type Documents = {
1818 "\n fragment QuestionCard on Question {\n id\n title\n description\n difficulty\n category\n\n ...QuestionSolvedStatus\n }\n" : typeof types . QuestionCardFragmentDoc ,
1919 "\n fragment QuestionSolvedStatus on Question {\n solved\n attempted\n }\n" : typeof types . QuestionSolvedStatusFragmentDoc ,
2020 "\n query ListQuestions($where: QuestionWhereInput, $after: Cursor) {\n questions(where: $where, first: 10, after: $after) {\n edges {\n node {\n id\n ...QuestionCard\n ...QuestionSolvedStatus\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n" : typeof types . ListQuestionsDocument ,
21+ "\n query CompletedQuestions {\n me {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n }\n }\n }\n" : typeof types . CompletedQuestionsDocument ,
22+ "\n query Points {\n me {\n totalPoints\n\n points(first: 5) {\n edges {\n node {\n id\n ...PointFragment\n }\n }\n }\n }\n }\n" : typeof types . PointsDocument ,
23+ "\n fragment PointFragment on Point {\n description\n points\n }\n" : typeof types . PointFragmentFragmentDoc ,
2124 "\n query BasicUserInfo {\n me {\n id\n name\n email\n avatar\n\n group {\n name\n }\n }\n }\n" : typeof types . BasicUserInfoDocument ,
2225} ;
2326const documents : Documents = {
2427 "\n query ChallengeStatisticsQuery {\n me {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n }\n }\n }\n" : types . ChallengeStatisticsQueryDocument ,
2528 "\n fragment QuestionCard on Question {\n id\n title\n description\n difficulty\n category\n\n ...QuestionSolvedStatus\n }\n" : types . QuestionCardFragmentDoc ,
2629 "\n fragment QuestionSolvedStatus on Question {\n solved\n attempted\n }\n" : types . QuestionSolvedStatusFragmentDoc ,
2730 "\n query ListQuestions($where: QuestionWhereInput, $after: Cursor) {\n questions(where: $where, first: 10, after: $after) {\n edges {\n node {\n id\n ...QuestionCard\n ...QuestionSolvedStatus\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n" : types . ListQuestionsDocument ,
31+ "\n query CompletedQuestions {\n me {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n }\n }\n }\n" : types . CompletedQuestionsDocument ,
32+ "\n query Points {\n me {\n totalPoints\n\n points(first: 5) {\n edges {\n node {\n id\n ...PointFragment\n }\n }\n }\n }\n }\n" : types . PointsDocument ,
33+ "\n fragment PointFragment on Point {\n description\n points\n }\n" : types . PointFragmentFragmentDoc ,
2834 "\n query BasicUserInfo {\n me {\n id\n name\n email\n avatar\n\n group {\n name\n }\n }\n }\n" : types . BasicUserInfoDocument ,
2935} ;
3036
@@ -58,6 +64,18 @@ export function graphql(source: "\n fragment QuestionSolvedStatus on Question
5864 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
5965 */
6066export function graphql ( source : "\n query ListQuestions($where: QuestionWhereInput, $after: Cursor) {\n questions(where: $where, first: 10, after: $after) {\n edges {\n node {\n id\n ...QuestionCard\n ...QuestionSolvedStatus\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query ListQuestions($where: QuestionWhereInput, $after: Cursor) {\n questions(where: $where, first: 10, after: $after) {\n edges {\n node {\n id\n ...QuestionCard\n ...QuestionSolvedStatus\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n" ] ;
67+ /**
68+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
69+ */
70+ export function graphql ( source : "\n query CompletedQuestions {\n me {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query CompletedQuestions {\n me {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n }\n }\n }\n" ] ;
71+ /**
72+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
73+ */
74+ export function graphql ( source : "\n query Points {\n me {\n totalPoints\n\n points(first: 5) {\n edges {\n node {\n id\n ...PointFragment\n }\n }\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query Points {\n me {\n totalPoints\n\n points(first: 5) {\n edges {\n node {\n id\n ...PointFragment\n }\n }\n }\n }\n }\n" ] ;
75+ /**
76+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
77+ */
78+ export function graphql ( source : "\n fragment PointFragment on Point {\n description\n points\n }\n" ) : ( typeof documents ) [ "\n fragment PointFragment on Point {\n description\n points\n }\n" ] ;
6179/**
6280 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
6381 */
0 commit comments