FastAPI、Websocket どちらも初学者になります。
習作としてグループ内のチャットアプリを作成しています。
フロントエンド(React) <=> FastAPI <=> GraphQL API(Hasura) での実現を目指しているのですが、そのために gql.Client.subscribe(query) の結果をリアルタイムで返す必要があります。
https://gql.readthedocs.io/en/latest/transports/websockets.htmlに倣い実装を試みたのですが、print(result)ではなく、return result のように、graphql subscriptionの結果をリアルタイムでフロントエンドに返すにはどうすれば良いでしょうか?
python
1#main.py 2app = FastAPI() 3 4graphql_query = (''' 5 subscription { 6 chats{ 7 descriptions 8 } 9 } 10''') 11 12@app.websocket("/ws") 13async def websocket_endpoint(): 14 async with Client( 15 transport=transport, #url省略 16 fetch_schema_from_transport=True, 17 ) as session: 18 19 async for result in session.subscribe(gql(graphql_query)): 20 print(result) #<-この値を返したい 21 22if __name__ == "__main__": 23 uvicorn.run("main:app", host="127.0.0.1", port=8000, log_level="info")
Python 3.9.2
uvicorn==0.15.0
gql==3.0.0b1
fastapi==0.70.0
####試行錯誤
いくつか試しましたが、どれも解決することができませんでした。
async for result in session.subscribe(gql(graphql_query)): return result
ERROR: ASGI callable returned without sending handshake.
async for result in session.subscribe(gql(graphql_query)): return await result
TypeError: object dict can't be used in 'await' expression
async for result in session.subscribe(gql(graphql_query)): yield result
TypeError: object async_generator can't be used in 'await' expression
検討のほどよろしくお願いいたします。
あなたの回答
tips
プレビュー