mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-15 06:08:59 +03:00
8f63199a63
* Handle Django database atomic requests * Create and handle database atomic mutations * Make code compatible with Python 2.7 * Code style * Define set_rollback instead of using the one in rest_framework.views because of backward compatibility * Implement mock.patch.dict
19 lines
377 B
Python
19 lines
377 B
Python
from graphene import Field
|
|
|
|
from graphene_django.forms.mutation import DjangoFormMutation, DjangoModelFormMutation
|
|
|
|
from .forms import PetForm
|
|
from .types import PetType
|
|
|
|
|
|
class PetFormMutation(DjangoFormMutation):
|
|
class Meta:
|
|
form_class = PetForm
|
|
|
|
|
|
class PetMutation(DjangoModelFormMutation):
|
|
pet = Field(PetType)
|
|
|
|
class Meta:
|
|
form_class = PetForm
|