evg-app-back/evgenApp/schema.py

12 lines
225 B
Python
Raw Normal View History

2021-01-04 23:25:59 +03:00
import graphene
2021-03-20 02:26:38 +03:00
2021-01-04 23:25:59 +03:00
import users.schema
2021-03-20 02:26:38 +03:00
class Query(users.schema.Query, graphene.ObjectType):
2021-01-10 15:51:59 +03:00
pass
2021-03-20 02:26:38 +03:00
class Mutation(users.schema.Mutation, graphene.ObjectType):
2021-01-04 23:25:59 +03:00
pass
2021-01-10 15:51:59 +03:00
schema = graphene.Schema(query=Query, mutation=Mutation)