mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-14 21:16:34 +03:00
9 lines
184 B
Python
9 lines
184 B
Python
import graphene
|
|
|
|
class Query(graphene.ObjectType):
|
|
hello = graphene.Field(graphene.String)
|
|
|
|
def resolve_hello(self, info):
|
|
return "hello"
|
|
|
|
schema = graphene.Schema(query=Query) |