@@ -548,7 +548,8 @@ export type GqlPaper = {
548548 client : Scalars [ 'String' ] [ 'output' ] ;
549549 conclusion ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
550550 createdAt ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
551- feedback : Array < GqlPaperFormData > ;
551+ feedbackMentor : Array < GqlPaperFormData > ;
552+ feedbackTrainee : Array < GqlPaperFormData > ;
552553 id : Scalars [ 'ID' ] [ 'output' ] ;
553554 mentorId : Scalars [ 'ID' ] [ 'output' ] ;
554555 periodEnd ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
@@ -581,7 +582,8 @@ export type GqlPaperFormData = {
581582export type GqlPaperInput = {
582583 briefing : Array < GqlPaperEntryInput > ;
583584 client : Scalars [ 'String' ] [ 'input' ] ;
584- feedback : Array < GqlPaperEntryInput > ;
585+ feedbackMentor : Array < GqlPaperEntryInput > ;
586+ feedbackTrainee : Array < GqlPaperEntryInput > ;
585587 mentorId : Scalars [ 'ID' ] [ 'input' ] ;
586588 periodEnd ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
587589 periodStart ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
@@ -604,7 +606,8 @@ export type GqlPaperStatus =
604606export type GqlPaperUpdateInput = {
605607 briefing : Array < GqlPaperEntryInput > ;
606608 client : Scalars [ 'String' ] [ 'input' ] ;
607- feedback : Array < GqlPaperEntryInput > ;
609+ feedbackMentor : Array < GqlPaperEntryInput > ;
610+ feedbackTrainee : Array < GqlPaperEntryInput > ;
608611 id : Scalars [ 'ID' ] [ 'input' ] ;
609612 mentorId : Scalars [ 'ID' ] [ 'input' ] ;
610613 periodEnd ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
@@ -1211,7 +1214,8 @@ export type GqlPaperResolvers<ContextType = Context, ParentType extends GqlResol
12111214 client ?: Resolver < GqlResolversTypes [ 'String' ] , ParentType , ContextType > ;
12121215 conclusion ?: Resolver < Maybe < GqlResolversTypes [ 'String' ] > , ParentType , ContextType > ;
12131216 createdAt ?: Resolver < Maybe < GqlResolversTypes [ 'String' ] > , ParentType , ContextType > ;
1214- feedback ?: Resolver < Array < GqlResolversTypes [ 'PaperFormData' ] > , ParentType , ContextType > ;
1217+ feedbackMentor ?: Resolver < Array < GqlResolversTypes [ 'PaperFormData' ] > , ParentType , ContextType > ;
1218+ feedbackTrainee ?: Resolver < Array < GqlResolversTypes [ 'PaperFormData' ] > , ParentType , ContextType > ;
12151219 id ?: Resolver < GqlResolversTypes [ 'ID' ] , ParentType , ContextType > ;
12161220 mentorId ?: Resolver < GqlResolversTypes [ 'ID' ] , ParentType , ContextType > ;
12171221 periodEnd ?: Resolver < Maybe < GqlResolversTypes [ 'String' ] > , ParentType , ContextType > ;
0 commit comments