evg-app-back/organisations/schema.py

9 lines
155 B
Python
Raw Normal View History

2021-01-10 15:51:59 +03:00
import graphene_django
import graphene
from .mutation import Mutation
from .query import Query
schema = graphene.Schema(query=Query, mutation=Mutation)