@@ -62,11 +62,13 @@ type Documents = {
6262 "\n query UserById($id: ID!) {\n user(id: $id) {\n id\n name\n email\n avatar\n createdAt\n updatedAt\n group {\n id\n name\n }\n }\n }\n" : typeof types . UserByIdDocument ,
6363 "\n query GroupList {\n groups {\n id\n name\n }\n }\n" : typeof types . GroupListDocument ,
6464 "\n query UsersTable(\n $first: Int\n $after: Cursor\n $last: Int\n $before: Cursor\n ) {\n users(first: $first, after: $after, last: $last, before: $before) {\n edges {\n node {\n id\n name\n email\n avatar\n createdAt\n updatedAt\n group {\n id\n name\n }\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n endCursor\n startCursor\n }\n }\n }\n" : typeof types . UsersTableDocument ,
65+ "\n query LoginTotalCount($where: EventWhereInput!) {\n events(where: $where) {\n totalCount\n }\n }\n" : typeof types . LoginTotalCountDocument ,
6566 "\n query OverviewRanking($filter: RankingFilter!, $first: Int!, $after: Cursor) {\n ranking(filter: $filter, first: $first, after: $after) {\n edges {\n node {\n id\n name\n }\n ...ScoreCell\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n }\n" : typeof types . OverviewRankingDocument ,
6667 "\n fragment ScoreCell on RankingEdge {\n ...UserCompletedQuestions\n ...UserTotalPoints\n ...RankingFragment\n }\n" : typeof types . ScoreCellFragmentDoc ,
6768 "\n fragment UserCompletedQuestions on RankingEdge {\n node {\n submissionStatistics {\n solvedQuestions\n }\n }\n }\n" : typeof types . UserCompletedQuestionsFragmentDoc ,
6869 "\n fragment UserTotalPoints on RankingEdge {\n node {\n totalPoints\n }\n }\n" : typeof types . UserTotalPointsFragmentDoc ,
6970 "\n fragment RankingFragment on RankingEdge {\n score\n }\n" : typeof types . RankingFragmentFragmentDoc ,
71+ "\n query SubmissionsTotalCount($where: SubmissionWhereInput!) {\n submissions(where: $where) {\n totalCount\n }\n }\n" : typeof types . SubmissionsTotalCountDocument ,
7072 "\n mutation MeUpdateUserInfo($input: UpdateUserInput!) {\n updateMe(input: $input) {\n id\n }\n }\n" : typeof types . MeUpdateUserInfoDocument ,
7173 "\n query MeUserInfo {\n me {\n id\n name\n avatar\n }\n }\n" : typeof types . MeUserInfoDocument ,
7274 "\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 ,
@@ -120,11 +122,13 @@ const documents: Documents = {
120122 "\n query UserById($id: ID!) {\n user(id: $id) {\n id\n name\n email\n avatar\n createdAt\n updatedAt\n group {\n id\n name\n }\n }\n }\n" : types . UserByIdDocument ,
121123 "\n query GroupList {\n groups {\n id\n name\n }\n }\n" : types . GroupListDocument ,
122124 "\n query UsersTable(\n $first: Int\n $after: Cursor\n $last: Int\n $before: Cursor\n ) {\n users(first: $first, after: $after, last: $last, before: $before) {\n edges {\n node {\n id\n name\n email\n avatar\n createdAt\n updatedAt\n group {\n id\n name\n }\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n endCursor\n startCursor\n }\n }\n }\n" : types . UsersTableDocument ,
125+ "\n query LoginTotalCount($where: EventWhereInput!) {\n events(where: $where) {\n totalCount\n }\n }\n" : types . LoginTotalCountDocument ,
123126 "\n query OverviewRanking($filter: RankingFilter!, $first: Int!, $after: Cursor) {\n ranking(filter: $filter, first: $first, after: $after) {\n edges {\n node {\n id\n name\n }\n ...ScoreCell\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n }\n" : types . OverviewRankingDocument ,
124127 "\n fragment ScoreCell on RankingEdge {\n ...UserCompletedQuestions\n ...UserTotalPoints\n ...RankingFragment\n }\n" : types . ScoreCellFragmentDoc ,
125128 "\n fragment UserCompletedQuestions on RankingEdge {\n node {\n submissionStatistics {\n solvedQuestions\n }\n }\n }\n" : types . UserCompletedQuestionsFragmentDoc ,
126129 "\n fragment UserTotalPoints on RankingEdge {\n node {\n totalPoints\n }\n }\n" : types . UserTotalPointsFragmentDoc ,
127130 "\n fragment RankingFragment on RankingEdge {\n score\n }\n" : types . RankingFragmentFragmentDoc ,
131+ "\n query SubmissionsTotalCount($where: SubmissionWhereInput!) {\n submissions(where: $where) {\n totalCount\n }\n }\n" : types . SubmissionsTotalCountDocument ,
128132 "\n mutation MeUpdateUserInfo($input: UpdateUserInput!) {\n updateMe(input: $input) {\n id\n }\n }\n" : types . MeUpdateUserInfoDocument ,
129133 "\n query MeUserInfo {\n me {\n id\n name\n avatar\n }\n }\n" : types . MeUserInfoDocument ,
130134 "\n query BasicUserInfo {\n me {\n id\n name\n email\n avatar\n\n group {\n name\n }\n }\n }\n" : types . BasicUserInfoDocument ,
@@ -336,6 +340,10 @@ export function graphql(source: "\n query GroupList {\n groups {\n id\n
336340 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
337341 */
338342export function graphql ( source : "\n query UsersTable(\n $first: Int\n $after: Cursor\n $last: Int\n $before: Cursor\n ) {\n users(first: $first, after: $after, last: $last, before: $before) {\n edges {\n node {\n id\n name\n email\n avatar\n createdAt\n updatedAt\n group {\n id\n name\n }\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n endCursor\n startCursor\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query UsersTable(\n $first: Int\n $after: Cursor\n $last: Int\n $before: Cursor\n ) {\n users(first: $first, after: $after, last: $last, before: $before) {\n edges {\n node {\n id\n name\n email\n avatar\n createdAt\n updatedAt\n group {\n id\n name\n }\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n endCursor\n startCursor\n }\n }\n }\n" ] ;
343+ /**
344+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
345+ */
346+ export function graphql ( source : "\n query LoginTotalCount($where: EventWhereInput!) {\n events(where: $where) {\n totalCount\n }\n }\n" ) : ( typeof documents ) [ "\n query LoginTotalCount($where: EventWhereInput!) {\n events(where: $where) {\n totalCount\n }\n }\n" ] ;
339347/**
340348 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
341349 */
@@ -356,6 +364,10 @@ export function graphql(source: "\n fragment UserTotalPoints on RankingEdge {\n
356364 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
357365 */
358366export function graphql ( source : "\n fragment RankingFragment on RankingEdge {\n score\n }\n" ) : ( typeof documents ) [ "\n fragment RankingFragment on RankingEdge {\n score\n }\n" ] ;
367+ /**
368+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
369+ */
370+ export function graphql ( source : "\n query SubmissionsTotalCount($where: SubmissionWhereInput!) {\n submissions(where: $where) {\n totalCount\n }\n }\n" ) : ( typeof documents ) [ "\n query SubmissionsTotalCount($where: SubmissionWhereInput!) {\n submissions(where: $where) {\n totalCount\n }\n }\n" ] ;
359371/**
360372 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
361373 */
0 commit comments