Skip to content

Commit

Permalink
Go
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Nov 30, 2022
1 parent 33d9270 commit 67282fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wrap/src/transforms/HoistField.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class HoistField<TContext extends Record<string, any> = Record<st
const nullableType = getNullableType(field.type);
if (isListType(nullableType)) {
isList = true;
return getNamedType(nullableType) as GraphQLObjectType;
return getNamedType(nullableType) as any;
}

return nullableType as GraphQLObjectType;
Expand Down

0 comments on commit 67282fb

Please sign in to comment.