There was an error while loading. Please reload this page.
DjangoModelFormMutation has the option to change the input name of the mutation, but it is always set to "input" regardless of value. Like so:
DjangoModelFormMutation
class SendMessageMutation(DjangoModelFormMutation): message = relay.Node.Field(MessageType) class Meta: form_class = SendMessageForm input_field_name = "message"
What is the expected behavior? Documentation states you can set input_field_name in the meta: https://docs.graphene-python.org/projects/django/en/latest/mutations/
input_field_name
Please tell us about your environment: