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 515e20e commit 32085d3Copy full SHA for 32085d3
graphql-api-generator/utils/utils.py
@@ -874,7 +874,7 @@ def add_mutation_update_edge_objects(schema: GraphQLSchema):
874
if field_name.startswith('_') or is_enum_or_scalar(inner_field_type):
875
continue
876
for t in connected_types:
877
- annotations = get_field_annotations(field)
+ annotations, _ = get_field_annotations(field)
878
if len(annotations) > 0:
879
edge_from = f'{capitalize(field_name)}EdgeFrom{t.name}'
880
update = f'update{edge_from}'
0 commit comments