@@ -26,7 +26,6 @@ export class ResolveInfo implements GraphQLResolveInfo {
2626 private _fieldDetailsList : FieldDetailsList ;
2727 private _parentType : GraphQLObjectType ;
2828 private _path : Path ;
29- private _abortSignal : AbortSignal | undefined ;
3029
3130 private _fieldName : string | undefined ;
3231 private _fieldNodes : ReadonlyArray < FieldNode > | undefined ;
@@ -38,21 +37,18 @@ export class ResolveInfo implements GraphQLResolveInfo {
3837 private _operation : OperationDefinitionNode | undefined ;
3938 private _variableValues : VariableValues | undefined ;
4039
41- // eslint-disable-next-line max-params
4240 constructor (
4341 validatedExecutionArgs : ValidatedExecutionArgs ,
4442 fieldDef : GraphQLField < unknown , unknown > ,
4543 fieldDetailsList : FieldDetailsList ,
4644 parentType : GraphQLObjectType ,
4745 path : Path ,
48- abortSignal : AbortSignal | undefined ,
4946 ) {
5047 this . _validatedExecutionArgs = validatedExecutionArgs ;
5148 this . _fieldDef = fieldDef ;
5249 this . _fieldDetailsList = fieldDetailsList ;
5350 this . _parentType = parentType ;
5451 this . _path = path ;
55- this . _abortSignal = abortSignal ;
5652 }
5753
5854 get fieldName ( ) : string {
@@ -107,8 +103,4 @@ export class ResolveInfo implements GraphQLResolveInfo {
107103 this . _variableValues ??= this . _validatedExecutionArgs . variableValues ;
108104 return this . _variableValues ;
109105 }
110-
111- get abortSignal ( ) : AbortSignal | undefined {
112- return this . _abortSignal ;
113- }
114106}
0 commit comments