Skip to content

Commit a3f9753

Browse files
committed
added studyInfo
1 parent 639d274 commit a3f9753

File tree

4 files changed

+137
-101
lines changed

4 files changed

+137
-101
lines changed

graphql/client/gql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const documents = {
4444
"\n query PageParticipants_Ratings {\n participants {\n uid\n brandName\n ratings {\n averageRating\n ratingCount\n component\n }\n }\n }\n ": types.PageParticipants_RatingsDocument,
4545
"\n mutation PageProfileMeCompanyScanUserQrScan($userUid: String!) {\n scanUserQr(userUid: $userUid) {\n user {\n uid\n name\n email\n resume {\n cv {\n url\n }\n }\n }\n isStarred\n alreadyScanned\n note\n error\n }\n }\n ": types.PageProfileMeCompanyScanUserQrScanDocument,
4646
"\n mutation PageProfileMeCompanyScanUserQrRefineQrScan($userUid: String!, $refineData: CompanyScanUserQrRefineData!) {\n scanUserQrRefine(userUid: $userUid, refineData: $refineData) {\n user {\n uid\n name\n email\n resume {\n cv {\n url\n }\n }\n }\n isStarred\n note\n error\n }\n }\n ": types.PageProfileMeCompanyScanUserQrRefineQrScanDocument,
47-
"\n query PageProfileMeCompanyScansListData(\n $companyUid: String\n $seasonUid: String\n ) {\n scannedUsers(companyUid: $companyUid, seasonUid: $seasonUid) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n }\n }\n note\n isStarred\n scannedAt\n }\n }\n ": types.PageProfileMeCompanyScansListDataDocument,
47+
"\n query PageProfileMeCompanyScansListData(\n $companyUid: String\n $seasonUid: String\n ) {\n scannedUsers(companyUid: $companyUid, seasonUid: $seasonUid) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n faculty {\n name\n module\n }\n studyYears {\n studyType\n studyYear\n }\n }\n }\n note\n isStarred\n scannedAt\n }\n }\n ": types.PageProfileMeCompanyScansListDataDocument,
4848
"\n mutation PageProfileMeCompanyScansListRefineQrScan($userUid: String!, $refineData: CompanyScanUserQrRefineData!) {\n scanUserQrRefine(userUid: $userUid, refineData: $refineData) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n }\n }\n isStarred\n note\n error\n }\n }\n ": types.PageProfileMeCompanyScansListRefineQrScanDocument,
4949
"\n query PageProfileMeCompanySignup_Data {\n talkCategories {\n name\n }\n booths {\n name\n key\n }\n companyApplication {\n booth\n wantsPanel\n wantsCocktail\n contactPerson {\n name\n email\n phone\n }\n talk {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n category {\n name\n }\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n }\n }\n workshop {\n titleEn\n titleHr\n descriptionEn\n descriptionHr\n language\n goal\n notesEn\n notesHr\n presenters {\n firstName\n lastName\n bioHr\n bioEn\n photo {\n name\n uid\n full {\n mimeType\n }\n }\n }\n }\n }\n }\n ": types.PageProfileMeCompanySignup_DataDocument,
5050
"\n mutation PageProfileMeCompanySignup_CreateApplication($info: CompanyApplicationCreateInput!) {\n createCompanyApplication(info: $info) {\n entity {\n talk {\n uid\n }\n workshop {\n uid\n }\n wantsCocktail\n wantsPanel\n }\n\n errors {\n field\n message\n }\n }\n }\n ": types.PageProfileMeCompanySignup_CreateApplicationDocument,
@@ -195,7 +195,7 @@ export function graphql(source: "\n mutation PageProfileMeCompanyScanUserQrRe
195195
/**
196196
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
197197
*/
198-
export function graphql(source: "\n query PageProfileMeCompanyScansListData(\n $companyUid: String\n $seasonUid: String\n ) {\n scannedUsers(companyUid: $companyUid, seasonUid: $seasonUid) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n }\n }\n note\n isStarred\n scannedAt\n }\n }\n "): (typeof documents)["\n query PageProfileMeCompanyScansListData(\n $companyUid: String\n $seasonUid: String\n ) {\n scannedUsers(companyUid: $companyUid, seasonUid: $seasonUid) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n }\n }\n note\n isStarred\n scannedAt\n }\n }\n "];
198+
export function graphql(source: "\n query PageProfileMeCompanyScansListData(\n $companyUid: String\n $seasonUid: String\n ) {\n scannedUsers(companyUid: $companyUid, seasonUid: $seasonUid) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n faculty {\n name\n module\n }\n studyYears {\n studyType\n studyYear\n }\n }\n }\n note\n isStarred\n scannedAt\n }\n }\n "): (typeof documents)["\n query PageProfileMeCompanyScansListData(\n $companyUid: String\n $seasonUid: String\n ) {\n scannedUsers(companyUid: $companyUid, seasonUid: $seasonUid) {\n user {\n uid\n name\n email\n phone\n resume {\n cv {\n url\n }\n faculty {\n name\n module\n }\n studyYears {\n studyType\n studyYear\n }\n }\n }\n note\n isStarred\n scannedAt\n }\n }\n "];
199199
/**
200200
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
201201
*/

0 commit comments

Comments
 (0)