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 3a23c1f commit f616b59Copy full SHA for f616b59
graphene/contrib/django/form_converter.py
@@ -60,11 +60,11 @@ def convert_form_field_to_float(field):
60
61
@convert_form_field.register(forms.ModelMultipleChoiceField)
62
@convert_form_field.register(GlobalIDMultipleChoiceField)
63
-def convert_form_field_to_list_or_connection(field):
+def convert_form_field_to_list(field):
64
return List(ID())
65
66
67
@convert_form_field.register(forms.ModelChoiceField)
68
@convert_form_field.register(GlobalIDFormField)
69
-def convert_form_field_to_djangomodel(field):
+def convert_form_field_to_id(field):
70
return ID()
0 commit comments