Skip to content

Commit e82062c

Browse files
committed
chore: remove unused argument isInputTypeCtx
1 parent 8bffbd1 commit e82062c

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

packages/graphql/lib/schema-builder/factories/input-type.factory.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export class InputTypeFactory {
3838
hostType,
3939
inputType,
4040
typeOptions,
41-
true,
4241
);
4342
}
4443
}

packages/graphql/lib/schema-builder/factories/output-type.factory.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,6 @@ export class OutputTypeFactory {
3232
throw new CannotDetermineOutputTypeError(hostType);
3333
}
3434
}
35-
return this.typeMapperService.mapToGqlType(
36-
hostType,
37-
gqlType,
38-
typeOptions,
39-
false,
40-
);
35+
return this.typeMapperService.mapToGqlType(hostType, gqlType, typeOptions);
4136
}
4237
}

packages/graphql/lib/schema-builder/services/type-mapper.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export class TypeMapperSevice {
5454
hostType: string,
5555
typeRef: T,
5656
options: TypeOptions,
57-
isInputTypeCtx: boolean,
5857
): T {
5958
this.validateTypeOptions(hostType, options);
6059
let graphqlType: T | GraphQLList<T> | GraphQLNonNull<T> = typeRef;

0 commit comments

Comments
 (0)