1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
---
title: Flask
---
# Flask
Strawberry comes with a basic Flask integration. It provides a view that you can
use to serve your GraphQL schema:
```python
from flask import Flask
from strawberry.flask.views import GraphQLView
from api.schema import schema
app = Flask(__name__)
app.add_url_rule(
"/graphql",
view_func=GraphQLView.as_view("graphql_view", schema=schema),
)
if __name__ == "__main__":
app.run()
```
If you'd prefer to use an asynchronous view you can instead use the following
import which has the same interface as `GraphQLView`. This is helpful if using a
dataloader.
```python
from strawberry.flask.views import AsyncGraphQLView
```
## Options
The `GraphQLView` accepts the following options at the moment:
- `schema`: mandatory, the schema created by `strawberry.Schema`.
- `graphql_ide`: optional, defaults to `"graphiql"`, allows to choose the
GraphQL IDE interface (one of `graphiql`, `apollo-sandbox` or `pathfinder`) or
to disable it by passing `None`.
- `allow_queries_via_get`: optional, defaults to `True`, whether to enable
queries via `GET` requests
- `multipart_uploads_enabled`: optional, defaults to `False`, controls whether
to enable multipart uploads. Please make sure to consider the
[security implications mentioned in the GraphQL Multipart Request Specification](https://github.com/jaydenseric/graphql-multipart-request-spec/blob/master/readme.md#security)
when enabling this feature.
## Extending the view
The base `GraphQLView` class can be extended by overriding any of the following
methods:
- `def get_context(self, request: Request, response: Response) -> Context`
- `def get_root_value(self, request: Request) -> Optional[RootValue]`
- `def process_result(self, request: Request, result: ExecutionResult) -> GraphQLHTTPResponse`
- `def decode_json(self, data: Union[str, bytes]) -> object`
- `def encode_json(self, data: object) -> str | bytes`
- `def render_graphql_ide(self, request: Request) -> Response`
<Note>
Note that the `AsyncGraphQLView` can also be extended in the same way, but the
`get_context`, `get_root_value`, `process_result`, and `render_graphql_ide`
methods are asynchronous.
</Note>
### get_context
`get_context` allows to provide a custom context object that can be used in your
resolver. You can return anything here, by default we return a dictionary with
the request. By default; the `Response` object from `flask` is injected via the
parameters.
```python
import strawberry
from strawberry.flask.views import GraphQLView
from flask import Request, Response
class MyGraphQLView(GraphQLView):
def get_context(self, request: Request, response: Response):
return {"example": 1}
@strawberry.type
class 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 use the context in a resolver, the resolver will return "1" in this
case.
### get_root_value
`get_root_value` allows to 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:
```python
import strawberry
from strawberry.flask.views import GraphQLView
from flask import Request
class MyGraphQLView(GraphQLView):
def get_root_value(self, request: Request):
return Query(name="Patrick")
@strawberry.type
class Query:
name: str
```
Here we are returning a Query where the name is "Patrick", so we when requesting
the field name we'll return "Patrick" in this case.
### process_result
`process_result` allows to customize and/or process results before they are sent
to the clients. This can be useful logging errors or hiding them (for example to
hide internal exceptions).
It needs to return an object of `GraphQLHTTPResponse` and accepts the execution
result.
```python
from strawberry.flask.views import GraphQLView
from strawberry.http import GraphQLHTTPResponse
from strawberry.types import ExecutionResult
class MyGraphQLView(GraphQLView):
def process_result(self, 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.
### decode_json
`decode_json` allows to customize the decoding of HTTP JSON requests. By default
we use `json.loads` but you can override this method to use a different decoder.
```python
from strawberry.flask.views import GraphQLView
from typing import Union
import orjson
class MyGraphQLView(GraphQLView):
def decode_json(self, data: Union[str, bytes]) -> object:
return orjson.loads(data)
```
Make sure your code raises `json.JSONDecodeError` or a subclass of it if the
JSON cannot be decoded. The library shown in the example above, `orjson`, does
this by default.
### encode_json
`encode_json` allows to customize the encoding of HTTP and WebSocket JSON
responses. By default we use `json.dumps` but you can override this method to
use a different encoder.
```python
import json
from strawberry.flask.views import GraphQLView
class MyGraphQLView(GraphQLView):
def encode_json(self, data: object) -> str | bytes:
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.
```python
from strawberry.flask.views import GraphQLView
from flask import Request, Response
class MyGraphQLView(GraphQLView):
def render_graphql_ide(self, request: Request) -> Response:
custom_html = """<html><body><h1>Custom GraphQL IDE</h1></body></html>"""
return Response(custom_html, status=200, content_type="text/html")
```
|