pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
424 B
25 lines
424 B
import strawberry
|
|
from fastapi import FastAPI
|
|
from strawberry.fastapi import GraphQLRouter
|
|
|
|
|
|
@strawberry.type
|
|
class User:
|
|
name: str
|
|
age: int
|
|
|
|
|
|
@strawberry.type
|
|
class Query:
|
|
@strawberry.field
|
|
def user(self) -> User:
|
|
return User(name="Patrick", age=100)
|
|
|
|
|
|
schema = strawberry.Schema(query=Query)
|
|
|
|
|
|
graphql_app = GraphQLRouter(schema)
|
|
|
|
app = FastAPI()
|
|
app.include_router(graphql_app, prefix="/graphql")
|
|
|