mirror of
https://github.com/rjNemo/graphql-file_upload
synced 2026-06-06 02:16:44 +00:00
10 lines
168 B
Python
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"
|