mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-14 21:16:34 +03:00
8 lines
137 B
Python
8 lines
137 B
Python
import graphene
|
|
import users.schema
|
|
|
|
class Query(users.schema.Query, graphene.ObjectType):
|
|
pass
|
|
|
|
|
|
schema = graphene.Schema(query=Query) |