graphene-django-cud icon indicating copy to clipboard operation
graphene-django-cud copied to clipboard

Easy and painless CUD-mutations for graphene-django.

Results 35 graphene-django-cud issues
Sort by recently updated
recently updated
newest added

There are a number of areas of the code, especially in light of new features, that are not properly documented. This issue keeps track of the pieces of the code...

documentation

I have a model with a `unique_together` constraint: ```python # users/models.py class Person(models.Model): class Meta: unique_together = ("first_name", "last_name") ``` However, when I add a `DjangoPatchMutation` for this model, and...

Expected Behaviour: The following example is given in the documentation, for nested fields using`many_to_one_extras`: ```python class CreateUserMutation(DjangoCreateMutation): class Meta: model = User many_to_one_extras = { "cats": { "add": {"type": "auto"}...

Hi, I'm wondering if this library exposes any way to generate an `InputType` for a model in an ad-hoc way. I was able to get this working by subclassing `DjangoCreateMutation`...

enhancement