We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1956c1f commit ae667f3Copy full SHA for ae667f3
graphene/core/types/objecttype.py
@@ -244,10 +244,8 @@ class InputObjectType(ObjectType):
244
245
@classmethod
246
def internal_type(cls, schema):
247
- fields = lambda: OrderedDict([(f.name, schema.T(f))
248
- for f in cls._meta.fields])
249
return GraphQLInputObjectType(
250
cls._meta.type_name,
251
description=cls._meta.description,
252
- fields=fields,
+ fields=partial(cls.get_fields, schema),
253
)
0 commit comments