graphql-python / graphene-django

Build powerful, efficient, and flexible GraphQL APIs with seamless Django integration.

Home Page:http://docs.graphene-python.org/projects/django/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provide setting to enable/disable converting choices to enums globally

Flauschbaellchen opened this issue · comments

commented

In our project we want to disable the auto-convertion of Django choice fields to Enums for every model.
To specify convert_choices_to_enum = False on every Type is a bit cumbersome so a global setting would help a lot.

I've created a PR which showcases the improvement I have in mind: #1477