@@ -21,7 +21,6 @@ type Documents = {
2121 "\n fragment PointDetailsCard on Point {\n points\n description\n grantedAt\n }\n" : typeof types . PointDetailsCardFragmentDoc ,
2222 "\n fragment PointUserCard on Point {\n user {\n id\n name\n }\n }\n" : typeof types . PointUserCardFragmentDoc ,
2323 "\n mutation CreatePoint($input: CreatePointInput!) {\n createPoint(input: $input) {\n id\n }\n }\n" : typeof types . CreatePointDocument ,
24- "\n query CreatePointDialogContent {\n users(first: 100) {\n edges {\n node {\n id\n name\n email\n }\n }\n }\n }\n" : typeof types . CreatePointDialogContentDocument ,
2524 "\n query PointsTable(\n $first: Int\n $after: Cursor\n $last: Int\n $before: Cursor\n $where: PointWhereInput\n ) {\n points(\n first: $first\n after: $after\n last: $last\n before: $before\n where: $where\n orderBy: { field: GRANTED_AT, direction: DESC }\n ) {\n edges {\n node {\n id\n ...PointsTableRow\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n" : typeof types . PointsTableDocument ,
2625 "\n fragment PointsTableRow on Point {\n id\n user {\n id\n name\n }\n points\n description\n grantedAt\n }\n" : typeof types . PointsTableRowFragmentDoc ,
2726 "\n query UpdatePointsFormUserInfo($id: ID!) {\n user(id: $id) {\n id\n name\n email\n }\n }\n" : typeof types . UpdatePointsFormUserInfoDocument ,
@@ -80,7 +79,10 @@ type Documents = {
8079 "\n fragment UserAuditInfoCard on User {\n createdAt\n updatedAt\n }\n" : typeof types . UserAuditInfoCardFragmentDoc ,
8180 "\n fragment UserGroupsCard on User {\n group {\n id\n name\n }\n }\n" : typeof types . UserGroupsCardFragmentDoc ,
8281 "\n query UserHeader($id: ID!) {\n user(id: $id) {\n id\n name\n email\n avatar\n }\n }\n" : typeof types . UserHeaderDocument ,
83- "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n }\n }\n" : typeof types . UserCardsDocument ,
82+ "\n fragment UserPointsCard on User {\n totalPoints\n\n points(first: 5, orderBy: { field: GRANTED_AT, direction: DESC }) {\n edges {\n node {\n id\n ...UserPointHistoryLine\n }\n }\n }\n }\n" : typeof types . UserPointsCardFragmentDoc ,
83+ "\n fragment UserPointHistoryLine on Point {\n points\n description\n grantedAt\n }\n" : typeof types . UserPointHistoryLineFragmentDoc ,
84+ "\n fragment UserQuestionsCard on User {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n\n solvedQuestionByDifficulty {\n difficulty\n solvedQuestions\n }\n }\n }\n" : typeof types . UserQuestionsCardFragmentDoc ,
85+ "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n ...UserPointsCard\n ...UserQuestionsCard\n }\n }\n" : typeof types . UserCardsDocument ,
8486 "\n mutation UpdateUser($id: ID!, $input: UpdateUserInput!) {\n updateUser(id: $id, input: $input) {\n id\n }\n }\n" : typeof types . UpdateUserDocument ,
8587 "\n mutation DeleteUser($id: ID!) {\n deleteUser(id: $id)\n }\n" : typeof types . DeleteUserDocument ,
8688 "\n mutation LogoutUserDevices($userID: ID!) {\n logoutUser(userID: $userID)\n }\n" : typeof types . LogoutUserDevicesDocument ,
@@ -107,7 +109,6 @@ const documents: Documents = {
107109 "\n fragment PointDetailsCard on Point {\n points\n description\n grantedAt\n }\n" : types . PointDetailsCardFragmentDoc ,
108110 "\n fragment PointUserCard on Point {\n user {\n id\n name\n }\n }\n" : types . PointUserCardFragmentDoc ,
109111 "\n mutation CreatePoint($input: CreatePointInput!) {\n createPoint(input: $input) {\n id\n }\n }\n" : types . CreatePointDocument ,
110- "\n query CreatePointDialogContent {\n users(first: 100) {\n edges {\n node {\n id\n name\n email\n }\n }\n }\n }\n" : types . CreatePointDialogContentDocument ,
111112 "\n query PointsTable(\n $first: Int\n $after: Cursor\n $last: Int\n $before: Cursor\n $where: PointWhereInput\n ) {\n points(\n first: $first\n after: $after\n last: $last\n before: $before\n where: $where\n orderBy: { field: GRANTED_AT, direction: DESC }\n ) {\n edges {\n node {\n id\n ...PointsTableRow\n }\n }\n totalCount\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n" : types . PointsTableDocument ,
112113 "\n fragment PointsTableRow on Point {\n id\n user {\n id\n name\n }\n points\n description\n grantedAt\n }\n" : types . PointsTableRowFragmentDoc ,
113114 "\n query UpdatePointsFormUserInfo($id: ID!) {\n user(id: $id) {\n id\n name\n email\n }\n }\n" : types . UpdatePointsFormUserInfoDocument ,
@@ -166,7 +167,10 @@ const documents: Documents = {
166167 "\n fragment UserAuditInfoCard on User {\n createdAt\n updatedAt\n }\n" : types . UserAuditInfoCardFragmentDoc ,
167168 "\n fragment UserGroupsCard on User {\n group {\n id\n name\n }\n }\n" : types . UserGroupsCardFragmentDoc ,
168169 "\n query UserHeader($id: ID!) {\n user(id: $id) {\n id\n name\n email\n avatar\n }\n }\n" : types . UserHeaderDocument ,
169- "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n }\n }\n" : types . UserCardsDocument ,
170+ "\n fragment UserPointsCard on User {\n totalPoints\n\n points(first: 5, orderBy: { field: GRANTED_AT, direction: DESC }) {\n edges {\n node {\n id\n ...UserPointHistoryLine\n }\n }\n }\n }\n" : types . UserPointsCardFragmentDoc ,
171+ "\n fragment UserPointHistoryLine on Point {\n points\n description\n grantedAt\n }\n" : types . UserPointHistoryLineFragmentDoc ,
172+ "\n fragment UserQuestionsCard on User {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n\n solvedQuestionByDifficulty {\n difficulty\n solvedQuestions\n }\n }\n }\n" : types . UserQuestionsCardFragmentDoc ,
173+ "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n ...UserPointsCard\n ...UserQuestionsCard\n }\n }\n" : types . UserCardsDocument ,
170174 "\n mutation UpdateUser($id: ID!, $input: UpdateUserInput!) {\n updateUser(id: $id, input: $input) {\n id\n }\n }\n" : types . UpdateUserDocument ,
171175 "\n mutation DeleteUser($id: ID!) {\n deleteUser(id: $id)\n }\n" : types . DeleteUserDocument ,
172176 "\n mutation LogoutUserDevices($userID: ID!) {\n logoutUser(userID: $userID)\n }\n" : types . LogoutUserDevicesDocument ,
@@ -228,10 +232,6 @@ export function graphql(source: "\n fragment PointUserCard on Point {\n user
228232 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
229233 */
230234export function graphql ( source : "\n mutation CreatePoint($input: CreatePointInput!) {\n createPoint(input: $input) {\n id\n }\n }\n" ) : ( typeof documents ) [ "\n mutation CreatePoint($input: CreatePointInput!) {\n createPoint(input: $input) {\n id\n }\n }\n" ] ;
231- /**
232- * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
233- */
234- export function graphql ( source : "\n query CreatePointDialogContent {\n users(first: 100) {\n edges {\n node {\n id\n name\n email\n }\n }\n }\n }\n" ) : ( typeof documents ) [ "\n query CreatePointDialogContent {\n users(first: 100) {\n edges {\n node {\n id\n name\n email\n }\n }\n }\n }\n" ] ;
235235/**
236236 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
237237 */
@@ -467,7 +467,19 @@ export function graphql(source: "\n query UserHeader($id: ID!) {\n user(id:
467467/**
468468 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
469469 */
470- export function graphql ( source : "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n }\n }\n" ) : ( typeof documents ) [ "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n }\n }\n" ] ;
470+ export function graphql ( source : "\n fragment UserPointsCard on User {\n totalPoints\n\n points(first: 5, orderBy: { field: GRANTED_AT, direction: DESC }) {\n edges {\n node {\n id\n ...UserPointHistoryLine\n }\n }\n }\n }\n" ) : ( typeof documents ) [ "\n fragment UserPointsCard on User {\n totalPoints\n\n points(first: 5, orderBy: { field: GRANTED_AT, direction: DESC }) {\n edges {\n node {\n id\n ...UserPointHistoryLine\n }\n }\n }\n }\n" ] ;
471+ /**
472+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
473+ */
474+ export function graphql ( source : "\n fragment UserPointHistoryLine on Point {\n points\n description\n grantedAt\n }\n" ) : ( typeof documents ) [ "\n fragment UserPointHistoryLine on Point {\n points\n description\n grantedAt\n }\n" ] ;
475+ /**
476+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
477+ */
478+ export function graphql ( source : "\n fragment UserQuestionsCard on User {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n\n solvedQuestionByDifficulty {\n difficulty\n solvedQuestions\n }\n }\n }\n" ) : ( typeof documents ) [ "\n fragment UserQuestionsCard on User {\n submissionStatistics {\n totalQuestions\n solvedQuestions\n attemptedQuestions\n\n solvedQuestionByDifficulty {\n difficulty\n solvedQuestions\n }\n }\n }\n" ] ;
479+ /**
480+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
481+ */
482+ export function graphql ( source : "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n ...UserPointsCard\n ...UserQuestionsCard\n }\n }\n" ) : ( typeof documents ) [ "\n query UserCards($id: ID!) {\n user(id: $id) {\n id\n ...UserGroupsCard\n ...UserAuditInfoCard\n ...UserPointsCard\n ...UserQuestionsCard\n }\n }\n" ] ;
471483/**
472484 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
473485 */
0 commit comments