16 lines
416 B
Python
16 lines
416 B
Python
import graphene
|
|
from django.conf import settings
|
|
from graphene_django.debug import DjangoDebug
|
|
|
|
from users.mutations_public import UserMutations
|
|
from registration.mutations_public import RegistrationMutations
|
|
|
|
|
|
class Mutation(UserMutations, RegistrationMutations, graphene.ObjectType):
|
|
|
|
if settings.DEBUG:
|
|
debug = graphene.Field(DjangoDebug, name='__debug')
|
|
|
|
|
|
schema = graphene.Schema(mutation=Mutation)
|