mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-10-19 18:24:17 +03:00
17 lines
341 B
Python
17 lines
341 B
Python
import cookbook.ingredients.schema
|
|
import cookbook.recipes.schema
|
|
import graphene
|
|
|
|
from graphene_django.debug import DjangoDebug
|
|
|
|
|
|
class Query(
|
|
cookbook.ingredients.schema.Query,
|
|
cookbook.recipes.schema.Query,
|
|
graphene.ObjectType,
|
|
):
|
|
debug = graphene.Field(DjangoDebug, name="_debug")
|
|
|
|
|
|
schema = graphene.Schema(query=Query)
|