skillbox/server/api/schema.py

21 lines
501 B
Python

import graphene
from django.conf import settings
from graphene_django.debug import DjangoDebug
class Query(graphene.ObjectType):
# This class will inherit from multiple Queries
if settings.DEBUG:
debug = graphene.Field(DjangoDebug, name='__debug')
class Mutation(graphene.ObjectType):
# This class will inherit from multiple Queries
if settings.DEBUG:
debug = graphene.Field(DjangoDebug, name='__debug')
schema = graphene.Schema(query=Query, mutation=Mutation)