mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-22 16:56:34 +03:00
9 lines
155 B
Python
9 lines
155 B
Python
|
import graphene_django
|
||
|
import graphene
|
||
|
|
||
|
|
||
|
from .mutation import Mutation
|
||
|
|
||
|
from .query import Query
|
||
|
|
||
|
schema = graphene.Schema(query=Query, mutation=Mutation)
|