mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-22 08:46:34 +03:00
12 lines
225 B
Python
12 lines
225 B
Python
import graphene
|
|
|
|
import users.schema
|
|
|
|
class Query(users.schema.Query, graphene.ObjectType):
|
|
pass
|
|
|
|
class Mutation(users.schema.Mutation, graphene.ObjectType):
|
|
pass
|
|
|
|
|
|
schema = graphene.Schema(query=Query, mutation=Mutation) |