-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql-types.ts
614 lines (468 loc) · 21.7 KB
/
graphql-types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
export type Maybe<T> = T | null;
export type InputMaybe<T> = Maybe<T>;
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
/** An ISO 8601-encoded datetime */
ISO8601DateTime: any;
/** Represents untyped JSON */
JSON: any;
};
export type Affiliation = {
__typename?: 'Affiliation';
role: Scalars['String'];
tenantId: Scalars['ID'];
tenantName: Scalars['String'];
};
export type AffiliationInput = {
id: Scalars['Int'];
tenantName: Scalars['String'];
};
export type CollectionMetadata = {
__typename?: 'CollectionMetadata';
currentPage: Scalars['Int'];
limitValue: Scalars['Int'];
totalCount: Scalars['Int'];
totalPages: Scalars['Int'];
};
export type Conference = {
__typename?: 'Conference';
id: Scalars['Int'];
name: Scalars['String'];
participants: Array<Participant>;
};
export type ConferenceInput = {
id?: InputMaybe<Scalars['Int']>;
name: Scalars['String'];
participants?: InputMaybe<Array<ParticipantInput>>;
password?: InputMaybe<Scalars['String']>;
};
export type ConferenceMutation = {
__typename?: 'ConferenceMutation';
createConference?: Maybe<CreateConferenceMutationPayload>;
updateConference?: Maybe<UpdateConferenceMutationPayload>;
};
export type ConferenceMutationCreateConferenceArgs = {
conference: ConferenceInput;
};
export type ConferenceMutationUpdateConferenceArgs = {
conference: ConferenceInput;
};
/** Autogenerated return type of CreateConferenceMutation */
export type CreateConferenceMutationPayload = {
__typename?: 'CreateConferenceMutationPayload';
conference: Conference;
};
/** Autogenerated return type of CreateUserMutation */
export type CreateUserMutationPayload = {
__typename?: 'CreateUserMutationPayload';
user: User;
};
/** Autogenerated return type of CreateVerificationMutation */
export type CreateVerificationMutationPayload = {
__typename?: 'CreateVerificationMutationPayload';
verifications: Array<Verification>;
};
export type Credential = {
__typename?: 'Credential';
accessToken: Scalars['String'];
client: Scalars['String'];
expiry: Scalars['Int'];
tokenType: Scalars['String'];
uid: Scalars['String'];
};
/** Autogenerated return type of DeleteUserMutation */
export type DeleteUserMutationPayload = {
__typename?: 'DeleteUserMutationPayload';
user: User;
};
export type Dossier = {
__typename?: 'Dossier';
affiliation: Affiliation;
candidate: Person;
companyContact?: Maybe<Person>;
companyMarkA?: Maybe<Scalars['String']>;
companyMarkB?: Maybe<Scalars['String']>;
companyPointsA?: Maybe<Scalars['String']>;
companyPointsB?: Maybe<Scalars['String']>;
conference: Conference;
dossierDownloadPath?: Maybe<Scalars['String']>;
dossierPath?: Maybe<Scalars['String']>;
expertMarkA?: Maybe<Scalars['String']>;
expertMarkB?: Maybe<Scalars['String']>;
expertMarkC?: Maybe<Scalars['String']>;
expertPointsA?: Maybe<Scalars['String']>;
expertPointsB?: Maybe<Scalars['String']>;
expertPointsC?: Maybe<Scalars['String']>;
finalMark?: Maybe<Scalars['String']>;
id: Scalars['Int'];
markDeduction?: Maybe<Scalars['Boolean']>;
primaryExpert?: Maybe<Person>;
secondaryExpert?: Maybe<Person>;
submittedMark?: Maybe<Scalars['String']>;
tags: Array<Scalars['String']>;
verifications?: Maybe<Array<Verification>>;
};
export type DossierCollection = {
__typename?: 'DossierCollection';
collection: Array<Dossier>;
metadata: CollectionMetadata;
};
export type DossierFilterInput = {
markDeduction?: InputMaybe<Scalars['Boolean']>;
tags?: InputMaybe<Scalars['String']>;
tenantName?: InputMaybe<Array<Scalars['String']>>;
};
export type DossierInput = {
affiliation: AffiliationInput;
candidate: PersonInput;
companyContact?: InputMaybe<PersonInput>;
companyMarkA?: InputMaybe<Scalars['String']>;
companyMarkB?: InputMaybe<Scalars['String']>;
companyPointsA?: InputMaybe<Scalars['String']>;
companyPointsB?: InputMaybe<Scalars['String']>;
conferenceId: Scalars['Int'];
dossierPath?: InputMaybe<Scalars['String']>;
expertMarkA?: InputMaybe<Scalars['String']>;
expertMarkB?: InputMaybe<Scalars['String']>;
expertMarkC?: InputMaybe<Scalars['String']>;
expertPointsA?: InputMaybe<Scalars['String']>;
expertPointsB?: InputMaybe<Scalars['String']>;
expertPointsC?: InputMaybe<Scalars['String']>;
finalMark?: InputMaybe<Scalars['String']>;
id?: InputMaybe<Scalars['Int']>;
markDeduction?: InputMaybe<Scalars['Boolean']>;
primaryExpert?: InputMaybe<PersonInput>;
secondaryExpert?: InputMaybe<PersonInput>;
submittedMark?: InputMaybe<Scalars['String']>;
};
export type Evaluation = {
__typename?: 'Evaluation';
result: Scalars['JSON'];
};
/** Autogenerated return type of ImportMutation */
export type ImportMutationPayload = {
__typename?: 'ImportMutationPayload';
importCount: Scalars['Int'];
};
export type Mutation = {
__typename?: 'Mutation';
conferences?: Maybe<ConferenceMutation>;
pkorg?: Maybe<PkorgMutation>;
userLogin?: Maybe<UserLoginPayload>;
userLogout?: Maybe<UserLogoutPayload>;
users?: Maybe<UserMutation>;
verificationFeedback?: Maybe<VerificationFeedbackMutationPayload>;
verifications?: Maybe<VerificationMutation>;
};
export type MutationPkorgArgs = {
baseUrl: Scalars['String'];
sessionToken: Scalars['String'];
userAgent?: InputMaybe<Scalars['String']>;
};
export type MutationUserLoginArgs = {
email: Scalars['String'];
password: Scalars['String'];
};
export type MutationVerificationFeedbackArgs = {
changeGrading: Scalars['Boolean'];
comment?: InputMaybe<Scalars['String']>;
token: Scalars['String'];
};
export type Participant = {
__typename?: 'Participant';
email: Scalars['String'];
forename: Scalars['String'];
id: Scalars['Int'];
surname: Scalars['String'];
verificationsCount?: Maybe<Scalars['Int']>;
};
export type ParticipantInput = {
email: Scalars['String'];
forename: Scalars['String'];
id?: InputMaybe<Scalars['Int']>;
surname: Scalars['String'];
};
export type Permission = {
__typename?: 'Permission';
dossier: Dossier;
id: Scalars['Int'];
user: User;
};
export type PermissionInput = {
conferenceId: Scalars['Int'];
id?: InputMaybe<Scalars['Int']>;
userId: Scalars['Int'];
};
export type Person = {
__typename?: 'Person';
forename: Scalars['String'];
id: Scalars['Int'];
surname: Scalars['String'];
};
export type PersonInput = {
forename: Scalars['String'];
id: Scalars['Int'];
surname: Scalars['String'];
};
export type PkorgMutation = {
__typename?: 'PkorgMutation';
importDossiers?: Maybe<ImportMutationPayload>;
};
export type PkorgMutationImportDossiersArgs = {
dossiers: Array<DossierInput>;
};
export type PkorgQuery = {
__typename?: 'PkorgQuery';
evaluation?: Maybe<Evaluation>;
sessionUser?: Maybe<SessionUser>;
};
export type PkorgQueryEvaluationArgs = {
evaluationPath: Scalars['String'];
};
export type Query = {
__typename?: 'Query';
conferences?: Maybe<Array<Conference>>;
dossiers?: Maybe<DossierCollection>;
participants?: Maybe<Array<Participant>>;
pkorg?: Maybe<PkorgQuery>;
system?: Maybe<System>;
uniqueTenantNames?: Maybe<Array<Scalars['String']>>;
users?: Maybe<Array<User>>;
verificationFeedback?: Maybe<VerificationFeedback>;
verifications?: Maybe<Array<Verification>>;
};
export type QueryConferencesArgs = {
id?: InputMaybe<Scalars['Int']>;
};
export type QueryDossiersArgs = {
filter?: InputMaybe<DossierFilterInput>;
id?: InputMaybe<Scalars['Int']>;
ids?: InputMaybe<Array<Scalars['Int']>>;
page?: InputMaybe<Scalars['Int']>;
};
export type QueryParticipantsArgs = {
conferenceId?: InputMaybe<Scalars['Int']>;
id?: InputMaybe<Scalars['Int']>;
};
export type QueryPkorgArgs = {
baseUrl: Scalars['String'];
sessionToken: Scalars['String'];
userAgent?: InputMaybe<Scalars['String']>;
};
export type QueryUsersArgs = {
id?: InputMaybe<Scalars['Int']>;
};
export type QueryVerificationFeedbackArgs = {
token: Scalars['String'];
};
export type QueryVerificationsArgs = {
dossierId?: InputMaybe<Scalars['Int']>;
id?: InputMaybe<Scalars['Int']>;
};
export type SessionUser = {
__typename?: 'SessionUser';
affiliations: Array<Affiliation>;
email: Scalars['String'];
forename: Scalars['String'];
surname: Scalars['String'];
};
export type System = {
__typename?: 'System';
version: Scalars['String'];
};
/** Autogenerated return type of UpdateConferenceMutation */
export type UpdateConferenceMutationPayload = {
__typename?: 'UpdateConferenceMutationPayload';
conference: Conference;
};
/** Autogenerated return type of UpdateUserMutation */
export type UpdateUserMutationPayload = {
__typename?: 'UpdateUserMutationPayload';
user: User;
};
export type User = {
__typename?: 'User';
email: Scalars['String'];
id: Scalars['Int'];
name?: Maybe<Scalars['String']>;
nickname?: Maybe<Scalars['String']>;
permissions?: Maybe<Array<Permission>>;
superuser?: Maybe<Scalars['Boolean']>;
};
export type UserInput = {
email: Scalars['String'];
id?: InputMaybe<Scalars['Int']>;
name: Scalars['String'];
nickname?: InputMaybe<Scalars['String']>;
password?: InputMaybe<Scalars['String']>;
passwordConfirmation?: InputMaybe<Scalars['String']>;
permissions?: InputMaybe<Array<PermissionInput>>;
superuser?: InputMaybe<Scalars['Boolean']>;
};
/** Autogenerated return type of UserLogin */
export type UserLoginPayload = {
__typename?: 'UserLoginPayload';
authenticatable: User;
credentials: Credential;
};
/** Autogenerated return type of UserLogout */
export type UserLogoutPayload = {
__typename?: 'UserLogoutPayload';
authenticatable: User;
};
export type UserMutation = {
__typename?: 'UserMutation';
createUser?: Maybe<CreateUserMutationPayload>;
deleteUser?: Maybe<DeleteUserMutationPayload>;
updateUser?: Maybe<UpdateUserMutationPayload>;
};
export type UserMutationCreateUserArgs = {
user: UserInput;
};
export type UserMutationDeleteUserArgs = {
id: Scalars['Int'];
};
export type UserMutationUpdateUserArgs = {
id: Scalars['Int'];
user: UserInput;
};
export type Verification = {
__typename?: 'Verification';
changeGrading?: Maybe<Scalars['Boolean']>;
comment?: Maybe<Scalars['String']>;
dossier: Dossier;
id: Scalars['Int'];
participant: Participant;
verifiedAt?: Maybe<Scalars['ISO8601DateTime']>;
};
export type VerificationFeedback = {
__typename?: 'VerificationFeedback';
changeGrading?: Maybe<Scalars['Boolean']>;
comment?: Maybe<Scalars['String']>;
dossier: Dossier;
id: Scalars['Int'];
};
/** Autogenerated return type of VerificationFeedbackMutation */
export type VerificationFeedbackMutationPayload = {
__typename?: 'VerificationFeedbackMutationPayload';
verification: VerificationFeedback;
};
export type VerificationInput = {
dossierId: Scalars['Int'];
id?: InputMaybe<Scalars['Int']>;
participantId: Scalars['Int'];
};
export type VerificationMutation = {
__typename?: 'VerificationMutation';
createVerification?: Maybe<CreateVerificationMutationPayload>;
};
export type VerificationMutationCreateVerificationArgs = {
verifications: Array<VerificationInput>;
};
export type SignInMutationVariables = Exact<{
email: Scalars['String'];
password: Scalars['String'];
}>;
export type SignInMutation = { __typename?: 'Mutation', userLogin?: { __typename?: 'UserLoginPayload', authenticatable: { __typename?: 'User', email: string, name?: string | null }, credentials: { __typename?: 'Credential', accessToken: string, client: string, expiry: number, tokenType: string, uid: string } } | null };
export type ReadUserQueryVariables = Exact<{
id: Scalars['Int'];
}>;
export type ReadUserQuery = { __typename?: 'Query', users?: Array<{ __typename?: 'User', id: number, email: string, name?: string | null, superuser?: boolean | null, nickname?: string | null }> | null };
export type UpdateUserMutationVariables = Exact<{
id: Scalars['Int'];
user: UserInput;
}>;
export type UpdateUserMutation = { __typename?: 'Mutation', users?: { __typename?: 'UserMutation', updateUser?: { __typename?: 'UpdateUserMutationPayload', user: { __typename?: 'User', id: number, email: string, name?: string | null, nickname?: string | null } } | null } | null };
export type IndexUsersQueryVariables = Exact<{ [key: string]: never; }>;
export type IndexUsersQuery = { __typename?: 'Query', users?: Array<{ __typename?: 'User', id: number, email: string, name?: string | null, nickname?: string | null, superuser?: boolean | null }> | null };
export type DeleteUserMutationVariables = Exact<{
id: Scalars['Int'];
}>;
export type DeleteUserMutation = { __typename?: 'Mutation', users?: { __typename?: 'UserMutation', deleteUser?: { __typename?: 'DeleteUserMutationPayload', user: { __typename?: 'User', id: number } } | null } | null };
export type CreateUserMutationVariables = Exact<{
user: UserInput;
}>;
export type CreateUserMutation = { __typename?: 'Mutation', users?: { __typename?: 'UserMutation', createUser?: { __typename?: 'CreateUserMutationPayload', user: { __typename?: 'User', id: number, email: string, name?: string | null, nickname?: string | null } } | null } | null };
export type IndexDossiersQueryVariables = Exact<{
page?: InputMaybe<Scalars['Int']>;
filter?: InputMaybe<DossierFilterInput>;
}>;
export type IndexDossiersQuery = { __typename?: 'Query', uniqueTenantNames?: Array<string> | null, dossiers?: { __typename?: 'DossierCollection', collection: Array<{ __typename?: 'Dossier', id: number, submittedMark?: string | null, markDeduction?: boolean | null, tags: Array<string>, dossierDownloadPath?: string | null, affiliation: { __typename?: 'Affiliation', tenantName: string }, candidate: { __typename?: 'Person', forename: string, surname: string, id: number }, conference: { __typename?: 'Conference', id: number, name: string } }>, metadata: { __typename?: 'CollectionMetadata', totalCount: number } } | null };
export type DossierVerificationExportQueryVariables = Exact<{ [key: string]: never; }>;
export type DossierVerificationExportQuery = { __typename?: 'Query', dossiers?: { __typename?: 'DossierCollection', collection: Array<{ __typename?: 'Dossier', companyMarkA?: string | null, companyMarkB?: string | null, companyPointsA?: string | null, companyPointsB?: string | null, expertMarkA?: string | null, expertMarkB?: string | null, expertMarkC?: string | null, expertPointsA?: string | null, expertPointsB?: string | null, finalMark?: string | null, expertPointsC?: string | null, id: number, markDeduction?: boolean | null, submittedMark?: string | null, affiliation: { __typename?: 'Affiliation', tenantName: string }, candidate: { __typename?: 'Person', forename: string, id: number, surname: string }, companyContact?: { __typename?: 'Person', forename: string, id: number, surname: string } | null, conference: { __typename?: 'Conference', id: number, name: string }, primaryExpert?: { __typename?: 'Person', forename: string, id: number, surname: string } | null, secondaryExpert?: { __typename?: 'Person', forename: string, id: number, surname: string } | null, verifications?: Array<{ __typename?: 'Verification', changeGrading?: boolean | null, comment?: string | null, id: number, verifiedAt?: any | null, participant: { __typename?: 'Participant', forename: string, email: string, surname: string, id: number } }> | null }> } | null };
export type ReadVerificationFeedbackQueryVariables = Exact<{
token: Scalars['String'];
}>;
export type ReadVerificationFeedbackQuery = { __typename?: 'Query', verificationFeedback?: { __typename?: 'VerificationFeedback', changeGrading?: boolean | null, comment?: string | null, dossier: { __typename?: 'Dossier', candidate: { __typename?: 'Person', forename: string, surname: string } } } | null };
export type SendVerificationFeedbackMutationVariables = Exact<{
token: Scalars['String'];
changeGrading: Scalars['Boolean'];
comment?: InputMaybe<Scalars['String']>;
}>;
export type SendVerificationFeedbackMutation = { __typename?: 'Mutation', verificationFeedback?: { __typename?: 'VerificationFeedbackMutationPayload', verification: { __typename?: 'VerificationFeedback', id: number } } | null };
export type ReadDossiersQueryVariables = Exact<{
ids?: InputMaybe<Array<Scalars['Int']> | Scalars['Int']>;
}>;
export type ReadDossiersQuery = { __typename?: 'Query', dossiers?: { __typename?: 'DossierCollection', collection: Array<{ __typename?: 'Dossier', id: number, conference: { __typename?: 'Conference', id: number, name: string, participants: Array<{ __typename?: 'Participant', email: string, forename: string, surname: string, id: number }> }, candidate: { __typename?: 'Person', forename: string, surname: string }, companyContact?: { __typename?: 'Person', forename: string, surname: string } | null, primaryExpert?: { __typename?: 'Person', forename: string, surname: string } | null, secondaryExpert?: { __typename?: 'Person', forename: string, surname: string } | null }> } | null };
export type CreateVerificationsMutationVariables = Exact<{
verifications: Array<VerificationInput> | VerificationInput;
}>;
export type CreateVerificationsMutation = { __typename?: 'Mutation', verifications?: { __typename?: 'VerificationMutation', createVerification?: { __typename?: 'CreateVerificationMutationPayload', verifications: Array<{ __typename?: 'Verification', id: number }> } | null } | null };
export type ReadDossierQueryVariables = Exact<{
id: Scalars['Int'];
}>;
export type ReadDossierQuery = { __typename?: 'Query', dossiers?: { __typename?: 'DossierCollection', collection: Array<{ __typename?: 'Dossier', conference: { __typename?: 'Conference', id: number, participants: Array<{ __typename?: 'Participant', email: string, forename: string, surname: string, id: number }> }, companyContact?: { __typename?: 'Person', forename: string, surname: string } | null, primaryExpert?: { __typename?: 'Person', forename: string, surname: string } | null, secondaryExpert?: { __typename?: 'Person', forename: string, surname: string } | null }> } | null };
export type CreateVerificationMutationVariables = Exact<{
verifications: Array<VerificationInput> | VerificationInput;
}>;
export type CreateVerificationMutation = { __typename?: 'Mutation', verifications?: { __typename?: 'VerificationMutation', createVerification?: { __typename?: 'CreateVerificationMutationPayload', verifications: Array<{ __typename?: 'Verification', id: number }> } | null } | null };
export type IndexVerificationsQueryVariables = Exact<{
dossierId?: InputMaybe<Scalars['Int']>;
}>;
export type IndexVerificationsQuery = { __typename?: 'Query', verifications?: Array<{ __typename?: 'Verification', id: number, changeGrading?: boolean | null, comment?: string | null, verifiedAt?: any | null, participant: { __typename?: 'Participant', forename: string, surname: string, email: string } }> | null };
export type ReadConferenceQueryVariables = Exact<{
id: Scalars['Int'];
}>;
export type ReadConferenceQuery = { __typename?: 'Query', conferences?: Array<{ __typename?: 'Conference', id: number, name: string, participants: Array<{ __typename?: 'Participant', id: number, forename: string, surname: string, email: string }> }> | null };
export type UpdateConferenceMutationVariables = Exact<{
conference: ConferenceInput;
}>;
export type UpdateConferenceMutation = { __typename?: 'Mutation', conferences?: { __typename?: 'ConferenceMutation', updateConference?: { __typename?: 'UpdateConferenceMutationPayload', conference: { __typename?: 'Conference', id: number, name: string } } | null } | null };
export type IndexConferencesQueryVariables = Exact<{ [key: string]: never; }>;
export type IndexConferencesQuery = { __typename?: 'Query', conferences?: Array<{ __typename?: 'Conference', id: number, name: string }> | null };
export type CreateConferenceMutationVariables = Exact<{
conference: ConferenceInput;
}>;
export type CreateConferenceMutation = { __typename?: 'Mutation', conferences?: { __typename?: 'ConferenceMutation', createConference?: { __typename?: 'CreateConferenceMutationPayload', conference: { __typename?: 'Conference', id: number, name: string } } | null } | null };
export type IndexParticipantsQueryVariables = Exact<{
conferenceId: Scalars['Int'];
}>;
export type IndexParticipantsQuery = { __typename?: 'Query', participants?: Array<{ __typename?: 'Participant', id: number, forename: string, surname: string, email: string, verificationsCount?: number | null }> | null };
export type CheckConnectionQueryVariables = Exact<{
baseUrl: Scalars['String'];
sessionToken: Scalars['String'];
userAgent: Scalars['String'];
}>;
export type CheckConnectionQuery = { __typename?: 'Query', pkorg?: { __typename?: 'PkorgQuery', sessionUser?: { __typename?: 'SessionUser', email: string, forename: string, surname: string, affiliations: Array<{ __typename?: 'Affiliation', tenantName: string, tenantId: string, role: string }> } | null } | null };
export type ImportDossiersMutationVariables = Exact<{
baseUrl: Scalars['String'];
sessionToken: Scalars['String'];
userAgent: Scalars['String'];
dossiers: Array<DossierInput> | DossierInput;
}>;
export type ImportDossiersMutation = { __typename?: 'Mutation', pkorg?: { __typename?: 'PkorgMutation', importDossiers?: { __typename?: 'ImportMutationPayload', importCount: number } | null } | null };
export type RetrieveEvaluationQueryVariables = Exact<{
baseUrl: Scalars['String'];
sessionToken: Scalars['String'];
userAgent: Scalars['String'];
evaluationPath: Scalars['String'];
}>;
export type RetrieveEvaluationQuery = { __typename?: 'Query', pkorg?: { __typename?: 'PkorgQuery', evaluation?: { __typename?: 'Evaluation', result: any } | null } | null };