26 lines
698 B
Python
26 lines
698 B
Python
import graphene
|
|
from django.conf import settings
|
|
from graphene import relay
|
|
from graphene_django.debug import DjangoDebug
|
|
|
|
|
|
from users.schema_public import UsersQuery
|
|
from users.mutations import ProfileMutations
|
|
|
|
|
|
class Query(UsersQuery, graphene.ObjectType):
|
|
node = relay.Node.Field()
|
|
|
|
if settings.DEBUG:
|
|
debug = graphene.Field(DjangoDebug, name='__debug')
|
|
|
|
|
|
# class Mutation(BookMutations, RoomMutations, AssignmentMutations, ObjectiveMutations, CoreMutations, PortfolioMutations,
|
|
# ProfileMutations, SurveysMutations, graphene.ObjectType):
|
|
|
|
if settings.DEBUG:
|
|
debug = graphene.Field(DjangoDebug, name='__debug')
|
|
|
|
|
|
schema = graphene.Schema(query=Query)
|