graphql-file_upload/app/schema/query.py
2021-07-07 12:01:59 +02:00

10 lines
168 B
Python

from typing import Any
from ariadne import QueryType
Query = QueryType()
@Query.field("hello")
async def resolve_hello(*_: Any) -> str:
return "Hello stranger"