@@ -26,6 +26,9 @@ type Documents = {
2626 "\n fragment DatabaseStructure on Database {\n id\n structure {\n tables {\n columns\n name\n }\n }\n }\n" : typeof types . DatabaseStructureFragmentDoc ,
2727 "\n query ChallengeStatistics {\n me {\n id\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n }\n }\n }\n" : typeof types . ChallengeStatisticsDocument ,
2828 "\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 ,
29+ "\n fragment MaterialsSchemaCard on Database {\n id\n slug\n description\n }\n" : typeof types . MaterialsSchemaCardFragmentDoc ,
30+ "\n query MaterialsSchemaContent($id: ID!) {\n database(id: $id) {\n id\n schema\n }\n }\n" : typeof types . MaterialsSchemaContentDocument ,
31+ "\n query MaterialsSchema {\n databases {\n id\n ...MaterialsSchemaCard\n }\n }\n" : typeof types . MaterialsSchemaDocument ,
2932 "\n query CompletedQuestions {\n me {\n id\n submissionStatistics {\n totalQuestions\n solvedQuestions\n }\n }\n }\n" : typeof types . CompletedQuestionsDocument ,
3033 "\n query MySolvedQuestionsCount {\n me {\n id\n name\n submissionStatistics {\n solvedQuestions\n }\n }\n }\n" : typeof types . MySolvedQuestionsCountDocument ,
3134 "\n query MyPoints {\n me {\n id\n name\n totalPoints\n }\n }\n" : typeof types . MyPointsDocument ,
@@ -53,6 +56,9 @@ const documents: Documents = {
5356 "\n fragment DatabaseStructure on Database {\n id\n structure {\n tables {\n columns\n name\n }\n }\n }\n" : types . DatabaseStructureFragmentDoc ,
5457 "\n query ChallengeStatistics {\n me {\n id\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n }\n }\n }\n" : types . ChallengeStatisticsDocument ,
5558 "\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 ,
59+ "\n fragment MaterialsSchemaCard on Database {\n id\n slug\n description\n }\n" : types . MaterialsSchemaCardFragmentDoc ,
60+ "\n query MaterialsSchemaContent($id: ID!) {\n database(id: $id) {\n id\n schema\n }\n }\n" : types . MaterialsSchemaContentDocument ,
61+ "\n query MaterialsSchema {\n databases {\n id\n ...MaterialsSchemaCard\n }\n }\n" : types . MaterialsSchemaDocument ,
5662 "\n query CompletedQuestions {\n me {\n id\n submissionStatistics {\n totalQuestions\n solvedQuestions\n }\n }\n }\n" : types . CompletedQuestionsDocument ,
5763 "\n query MySolvedQuestionsCount {\n me {\n id\n name\n submissionStatistics {\n solvedQuestions\n }\n }\n }\n" : types . MySolvedQuestionsCountDocument ,
5864 "\n query MyPoints {\n me {\n id\n name\n totalPoints\n }\n }\n" : types . MyPointsDocument ,
@@ -130,6 +136,18 @@ export function graphql(source: "\n query ChallengeStatistics {\n me {\n
130136 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
131137 */
132138export 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" ] ;
139+ /**
140+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
141+ */
142+ export function graphql ( source : "\n fragment MaterialsSchemaCard on Database {\n id\n slug\n description\n }\n" ) : ( typeof documents ) [ "\n fragment MaterialsSchemaCard on Database {\n id\n slug\n description\n }\n" ] ;
143+ /**
144+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
145+ */
146+ export function graphql ( source : "\n query MaterialsSchemaContent($id: ID!) {\n database(id: $id) {\n id\n schema\n }\n }\n" ) : ( typeof documents ) [ "\n query MaterialsSchemaContent($id: ID!) {\n database(id: $id) {\n id\n schema\n }\n }\n" ] ;
147+ /**
148+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
149+ */
150+ export function graphql ( source : "\n query MaterialsSchema {\n databases {\n id\n ...MaterialsSchemaCard\n }\n }\n" ) : ( typeof documents ) [ "\n query MaterialsSchema {\n databases {\n id\n ...MaterialsSchemaCard\n }\n }\n" ] ;
133151/**
134152 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
135153 */
0 commit comments