|
| 1 | +# aiohttp-Graphql |
| 2 | + |
| 3 | +Adds GraphQL support to your aiohttp application. |
| 4 | + |
| 5 | +## Installation |
| 6 | + |
| 7 | +To install the integration with aiohttp, run the below command on your terminal. |
| 8 | + |
| 9 | +`pip install graphql-server-core[aiohttp]` |
| 10 | + |
| 11 | +## Usage |
| 12 | + |
| 13 | +Use the `GraphQLView` view from `graphql_server.aiohttp` |
| 14 | + |
| 15 | +```python |
| 16 | +from aiohttp import web |
| 17 | +from graphql_server.aiohttp import GraphQLView |
| 18 | + |
| 19 | +from schema import schema |
| 20 | + |
| 21 | +app = web.Application() |
| 22 | + |
| 23 | +GraphQLView.attach(app, schema=schema, graphiql=True) |
| 24 | + |
| 25 | +# Optional, for adding batch query support (used in Apollo-Client) |
| 26 | +GraphQLView.attach(app, schema=schema, batch=True, route_path="/graphql/batch") |
| 27 | + |
| 28 | +if __name__ == '__main__': |
| 29 | + web.run_app(app) |
| 30 | +``` |
| 31 | + |
| 32 | +This will add `/graphql` endpoint to your app (customizable by passing `route_path='/mypath'` to `GraphQLView.attach`) and enable the GraphiQL IDE. |
| 33 | + |
| 34 | +Note: `GraphQLView.attach` is just a convenience function, and the same functionality can be achieved with |
| 35 | + |
| 36 | +```python |
| 37 | +gql_view = GraphQLView(schema=schema, graphiql=True) |
| 38 | +app.router.add_route('*', '/graphql', gql_view, name='graphql') |
| 39 | +``` |
| 40 | + |
| 41 | +It's worth noting that the the "view function" of `GraphQLView` is contained in `GraphQLView.__call__`. So, when you create an instance, that instance is callable with the request object as the sole positional argument. To illustrate: |
| 42 | + |
| 43 | +```python |
| 44 | +gql_view = GraphQLView(schema=Schema, **kwargs) |
| 45 | +gql_view(request) # <-- the instance is callable and expects a `aiohttp.web.Request` object. |
| 46 | +``` |
| 47 | + |
| 48 | +### Supported options for GraphQLView |
| 49 | + |
| 50 | + * `schema`: The `GraphQLSchema` object that you want the view to execute when it gets a valid request. |
| 51 | + * `context`: A value to pass as the `context_value` to graphql `execute` function. By default is set to `dict` with request object at key `request`. |
| 52 | + * `root_value`: The `root_value` you want to provide to graphql `execute`. |
| 53 | + * `pretty`: Whether or not you want the response to be pretty printed JSON. |
| 54 | + * `graphiql`: If `True`, may present [GraphiQL](https://github.com/graphql/graphiql) when loaded directly from a browser (a useful tool for debugging and exploration). |
| 55 | + * `graphiql_version`: The graphiql version to load. Defaults to **"1.0.3"**. |
| 56 | + * `graphiql_template`: Inject a Jinja template string to customize GraphiQL. |
| 57 | + * `graphiql_html_title`: The graphiql title to display. Defaults to **"GraphiQL"**. |
| 58 | + * `jinja_env`: Sets jinja environment to be used to process GraphiQL template. If Jinja’s async mode is enabled (by `enable_async=True`), uses |
| 59 | +`Template.render_async` instead of `Template.render`. If environment is not set, fallbacks to simple regex-based renderer. |
| 60 | + * `batch`: Set the GraphQL view as batch (for using in [Apollo-Client](http://dev.apollodata.com/core/network.html#query-batching) or [ReactRelayNetworkLayer](https://github.com/nodkz/react-relay-network-layer)) |
| 61 | + * `middleware`: A list of graphql [middlewares](http://docs.graphene-python.org/en/latest/execution/middleware/). |
| 62 | + * `max_age`: Sets the response header Access-Control-Max-Age for preflight requests. |
| 63 | + * `encode`: the encoder to use for responses (sensibly defaults to `graphql_server.json_encode`). |
| 64 | + * `format_error`: the error formatter to use for responses (sensibly defaults to `graphql_server.default_format_error`. |
| 65 | + * `enable_async`: whether `async` mode will be enabled. |
| 66 | + * `subscriptions`: The GraphiQL socket endpoint for using subscriptions in graphql-ws. |
| 67 | + * `headers`: An optional GraphQL string to use as the initial displayed request headers, if not provided, the stored headers will be used. |
| 68 | + * `default_query`: An optional GraphQL string to use when no query is provided and no stored query exists from a previous session. If not provided, GraphiQL will use its own default query. |
| 69 | +* `header_editor_enabled`: An optional boolean which enables the header editor when true. Defaults to **false**. |
| 70 | +* `should_persist_headers`: An optional boolean which enables to persist headers to storage when true. Defaults to **false**. |
| 71 | + |
| 72 | +## Contributing |
| 73 | +See [CONTRIBUTING.md](../CONTRIBUTING.md) |
0 commit comments