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 1acda24 commit 7ea3b9bCopy full SHA for 7ea3b9b
graphql-api-generator/utils/utils.py
@@ -422,7 +422,8 @@ def add_object_type_filters(schema: GraphQLSchema):
422
continue
423
424
for field_name, field in _type.fields.items():
425
- if not is_list_type(field.type):
+
426
+ if not is_list_type(get_nullable_type(field.type)):
427
428
429
named_type = get_named_type(field.type)
0 commit comments