Jeremy Stretch

Results 422 comments of Jeremy Stretch

I can confirm that this is solved for me using commit a7a8b3dca6cee0ac7e94833535fea65911b507ac under Django 4.0.2 (`pip install git+git://github.com/graphql-python/graphene-django.git@a7a8b3dca6cee0ac7e94833535fea65911b507ac`).

Happy to help get this out the door if I can. IIRC there was some mention of wanting to clean up the test suite prior to releasing?

@webafra You can work around it with a monkey patch in `settings.py` if you really need to, but recognize that it's a band-aid at best. (The below works for Django...

@ulgens thanks for digging into this! Please let me know if I can be of any help.

I've run into this as well. It seems that another workaround is to add an "empty" choice to the set of choices: ```python field_choices = ( ('', '--------'), ('foo', 'Foo'),...

We'll probably have to sit on this until we figure out what the implementation of #51 looks like.

I don't see any reason to associate child interfaces with the module of their parent, as the child interfaces must be virtual. They are dependent upon their parents, which are...

IMO it seems like they should be. I'm not sure why that's not the case; after skimming #1519 I didn't see any mention of the intended behavior upon deletion of...

It probably makes sense to force nullification of the `module` field for child interfaces. Otherwise we would have to provide additional validation to ensure it's always kept in sync with...

This sounds like the sort of thing that would best be implemented as a plugin. Maybe you'd be interested in developing something as a proof of concept. As a core...