title: Strawberry docs
General
Types
Codegen
Extensions
>Errors
>Guides
Editor integration
Concepts
Integrations
Federation
Operations
AIOHTTP
Strawberry comes with a basic AIOHTTP integration. It provides a view that you can use to serve your GraphQL schema:
import strawberryfrom aiohttp import webfrom strawberry.aiohttp.views import GraphQLView
@strawberry.typeclass Query: @strawberry.field def hello(self, name: str = "World") -> str: return f"Hello, {name}!"
schema = strawberry.Schema(query=Query)
app = web.Application()
app.router.add_route("*", "/graphql", GraphQLView(schema=schema))
Options
The GraphQLView
accepts the following options at the moment:
schema
: mandatory, the schema created bystrawberry.Schema
.graphql_ide
: optional, defaults to"graphiql"
, allows to choose the GraphQL IDE interface (one ofgraphiql
,apollo-sandbox
orpathfinder
) or to disable it by passingNone
.allow_queries_via_get
: optional, defaults toTrue
, whether to enable queries viaGET
requestsmultipart_uploads_enabled
: optional, defaults toFalse
, controls whether to enable multipart uploads. Please make sure to consider the security implications mentioned in the GraphQL Multipart Request Specification when enabling this feature.
Extending the view
The base GraphQLView
class can be extended by overriding the following
methods:
async get_context(self, request: aiohttp.web.Request, response: aiohttp.web.StreamResponse) -> object
async get_root_value(self, request: aiohttp.web.Request) -> object
async process_result(self, request: aiohttp.web.Request, result: ExecutionResult) -> GraphQLHTTPResponse
def encode_json(self, data: GraphQLHTTPResponse) -> str
async def render_graphql_ide(self, request: aiohttp.web.Request) -> aiohttp.web.Response
get_context
By overriding GraphQLView.get_context
you can provide a custom context object
for your resolvers. You can return anything here; by default GraphQLView returns
a dictionary with the request.
import strawberryfrom aiohttp import webfrom strawberry.types import Infofrom strawberry.aiohttp.views import GraphQLView
class MyGraphQLView(GraphQLView): async def get_context(self, request: web.Request, response: web.StreamResponse): return {"request": request, "response": response, "example": 1}
@strawberry.typeclass Query: @strawberry.field def example(self, info: strawberry.Info) -> str: return str(info.context["example"])
Here we are returning a custom context dictionary that contains only one item
called "example"
.
Then we can use the context in a resolver. In this case the resolver will return
1
.
get_root_value
By overriding GraphQLView.get_root_value
you can provide a custom root value
for your schema. This is probably not used a lot but it might be useful in
certain situations.
Here's an example:
import strawberryfrom aiohttp import webfrom strawberry.aiohttp.views import GraphQLView
class MyGraphQLView(GraphQLView): async def get_root_value(self, request: web.Request): return Query(name="Patrick")
@strawberry.typeclass Query: name: str
Here we configure a Query where requesting the name
field will return
"Patrick"
through the custom root value.
process_result
By overriding GraphQLView.process_result
you can customize and/or process
results before they are sent to a client. This can be useful for logging errors,
or even hiding them (for example to hide internal exceptions).
It needs to return an object of GraphQLHTTPResponse
and accepts the request
and execution result.
from aiohttp import webfrom strawberry.aiohttp.views import GraphQLViewfrom strawberry.http import GraphQLHTTPResponsefrom strawberry.types import ExecutionResult
class MyGraphQLView(GraphQLView): async def process_result( self, request: web.Request, result: ExecutionResult ) -> GraphQLHTTPResponse: data: GraphQLHTTPResponse = {"data": result.data}
if result.errors: data["errors"] = [err.formatted for err in result.errors]
return data
In this case we are doing the default processing of the result, but it can be tweaked based on your needs.
encode_json
encode_json
allows to customize the encoding of the JSON response. By default
we use json.dumps
but you can override this method to use a different encoder.
class MyGraphQLView(GraphQLView): def encode_json(self, data: GraphQLHTTPResponse) -> str: return json.dumps(data, indent=2)
render_graphql_ide
In case you need more control over the rendering of the GraphQL IDE than the
graphql_ide
option provides, you can override the render_graphql_ide
method.
from aiohttp import webfrom strawberry.aiohttp.views import GraphQLView
class MyGraphQLView(GraphQLView): async def render_graphql_ide(self, request: web.Request) -> web.Response: custom_html = """<html><body><h1>Custom GraphQL IDE</h1></body></html>"""
return web.Response(text=custom_html, content_type="text/html")