Skip to content

Commit 51dcc22

Browse files
KingDarBojajkimbo
andauthored
Docs about integration with each framework (#54)
Co-authored-by: Jonathan Kim <[email protected]>
1 parent 90cfb09 commit 51dcc22

File tree

9 files changed

+312
-17
lines changed

9 files changed

+312
-17
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ include CONTRIBUTING.md
77
include codecov.yml
88
include tox.ini
99

10+
recursive-include docs *.md
11+
1012
graft tests
1113
prune bin
1214

README.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
1-
# GraphQL-Server-Core
1+
# GraphQL-Server
22

33
[![PyPI version](https://badge.fury.io/py/graphql-server-core.svg)](https://badge.fury.io/py/graphql-server-core)
44
[![Build Status](https://travis-ci.org/graphql-python/graphql-server-core.svg?branch=master)](https://travis-ci.org/graphql-python/graphql-server-core)
55
[![Coverage Status](https://codecov.io/gh/graphql-python/graphql-server-core/branch/master/graph/badge.svg)](https://codecov.io/gh/graphql-python/graphql-server-core)
66

7-
GraphQL-Server-Core is a base library that serves as a helper
7+
GraphQL-Server is a base library that serves as a helper
88
for building GraphQL servers or integrations into existing web frameworks using
99
[GraphQL-Core](https://github.com/graphql-python/graphql-core).
1010

11-
## Existing integrations built with GraphQL-Server-Core
11+
## Integrations built with GraphQL-Server
1212

13-
| Server integration | Package |
13+
| Server integration | Docs |
1414
|---|---|
15-
| Flask | [flask-graphql](https://github.com/graphql-python/flask-graphql/) |
16-
| Sanic |[sanic-graphql](https://github.com/graphql-python/sanic-graphql/) |
17-
| AIOHTTP | [aiohttp-graphql](https://github.com/graphql-python/aiohttp-graphql) |
18-
| WebOb (Pyramid, TurboGears) | [webob-graphql](https://github.com/graphql-python/webob-graphql/) |
15+
| Flask | [flask](docs/flask.md) |
16+
| Sanic |[sanic](docs/sanic.md) |
17+
| AIOHTTP | [aiohttp](docs/aiohttp.md) |
18+
| WebOb (Pyramid, TurboGears) | [webob](docs/webob.md) |
19+
20+
## Other integrations built with GraphQL-Server
21+
22+
| Server integration | Package |
1923
| WSGI | [wsgi-graphql](https://github.com/moritzmhmk/wsgi-graphql) |
2024
| Responder | [responder.ext.graphql](https://github.com/kennethreitz/responder/blob/master/responder/ext/graphql.py) |
2125

docs/aiohttp.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
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)

docs/flask.md

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Flask-GraphQL
2+
3+
Adds GraphQL support to your Flask application.
4+
5+
## Installation
6+
7+
To install the integration with Flask, run the below command on your terminal.
8+
9+
`pip install graphql-server-core[flask]`
10+
11+
## Usage
12+
13+
Use the `GraphQLView` view from `graphql_server.flask`.
14+
15+
```python
16+
from flask import Flask
17+
from graphql_server.flask import GraphQLView
18+
19+
from schema import schema
20+
21+
app = Flask(__name__)
22+
23+
app.add_url_rule('/graphql', view_func=GraphQLView.as_view(
24+
'graphql',
25+
schema=schema,
26+
graphiql=True,
27+
))
28+
29+
# Optional, for adding batch query support (used in Apollo-Client)
30+
app.add_url_rule('/graphql/batch', view_func=GraphQLView.as_view(
31+
'graphql',
32+
schema=schema,
33+
batch=True
34+
))
35+
36+
if __name__ == '__main__':
37+
app.run()
38+
```
39+
40+
This will add `/graphql` endpoint to your app and enable the GraphiQL IDE.
41+
42+
### Special Note for Graphene v3
43+
44+
If you are using the `Schema` type of [Graphene](https://github.com/graphql-python/graphene) library, be sure to use the `graphql_schema` attribute to pass as schema on the `GraphQLView` view. Otherwise, the `GraphQLSchema` from `graphql-core` is the way to go.
45+
46+
More info at [Graphene v3 release notes](https://github.com/graphql-python/graphene/wiki/v3-release-notes#graphene-schema-no-longer-subclasses-graphqlschema-type) and [GraphQL-core 3 usage](https://github.com/graphql-python/graphql-core#usage).
47+
48+
49+
### Supported options for GraphQLView
50+
51+
* `schema`: The `GraphQLSchema` object that you want the view to execute when it gets a valid request.
52+
* `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`.
53+
* `root_value`: The `root_value` you want to provide to graphql `execute`.
54+
* `pretty`: Whether or not you want the response to be pretty printed JSON.
55+
* `graphiql`: If `True`, may present [GraphiQL](https://github.com/graphql/graphiql) when loaded directly from a browser (a useful tool for debugging and exploration).
56+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.0.3"**.
57+
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
58+
* `graphiql_html_title`: The graphiql title to display. Defaults to **"GraphiQL"**.
59+
* `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))
60+
* `middleware`: A list of graphql [middlewares](http://docs.graphene-python.org/en/latest/execution/middleware/).
61+
* `encode`: the encoder to use for responses (sensibly defaults to `graphql_server.json_encode`).
62+
* `format_error`: the error formatter to use for responses (sensibly defaults to `graphql_server.default_format_error`.
63+
* `subscriptions`: The GraphiQL socket endpoint for using subscriptions in graphql-ws.
64+
* `headers`: An optional GraphQL string to use as the initial displayed request headers, if not provided, the stored headers will be used.
65+
* `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.
66+
* `header_editor_enabled`: An optional boolean which enables the header editor when true. Defaults to **false**.
67+
* `should_persist_headers`: An optional boolean which enables to persist headers to storage when true. Defaults to **false**.
68+
69+
70+
You can also subclass `GraphQLView` and overwrite `get_root_value(self, request)` to have a dynamic root value
71+
per request.
72+
73+
```python
74+
class UserRootValue(GraphQLView):
75+
def get_root_value(self, request):
76+
return request.user
77+
78+
```
79+
80+
## Contributing
81+
See [CONTRIBUTING.md](../CONTRIBUTING.md)

docs/sanic.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Sanic-GraphQL
2+
3+
Adds GraphQL support to your Sanic application.
4+
5+
## Installation
6+
7+
To install the integration with Sanic, run the below command on your terminal.
8+
9+
`pip install graphql-server-core[sanic]`
10+
11+
## Usage
12+
13+
Use the `GraphQLView` view from `graphql_server.sanic`
14+
15+
```python
16+
from graphql_server.sanic import GraphQLView
17+
from sanic import Sanic
18+
19+
from schema import schema
20+
21+
app = Sanic(name="Sanic Graphql App")
22+
23+
app.add_route(
24+
GraphQLView.as_view(schema=schema, graphiql=True),
25+
'/graphql'
26+
)
27+
28+
# Optional, for adding batch query support (used in Apollo-Client)
29+
app.add_route(
30+
GraphQLView.as_view(schema=schema, batch=True),
31+
'/graphql/batch'
32+
)
33+
34+
if __name__ == '__main__':
35+
app.run(host='0.0.0.0', port=8000)
36+
```
37+
38+
This will add `/graphql` endpoint to your app and enable the GraphiQL IDE.
39+
40+
### Supported options for GraphQLView
41+
42+
* `schema`: The `GraphQLSchema` object that you want the view to execute when it gets a valid request.
43+
* `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`.
44+
* `root_value`: The `root_value` you want to provide to graphql `execute`.
45+
* `pretty`: Whether or not you want the response to be pretty printed JSON.
46+
* `graphiql`: If `True`, may present [GraphiQL](https://github.com/graphql/graphiql) when loaded directly from a browser (a useful tool for debugging and exploration).
47+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.0.3"**.
48+
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
49+
* `graphiql_html_title`: The graphiql title to display. Defaults to **"GraphiQL"**.
50+
* `jinja_env`: Sets jinja environment to be used to process GraphiQL template. If Jinja’s async mode is enabled (by `enable_async=True`), uses
51+
`Template.render_async` instead of `Template.render`. If environment is not set, fallbacks to simple regex-based renderer.
52+
* `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))
53+
* `middleware`: A list of graphql [middlewares](http://docs.graphene-python.org/en/latest/execution/middleware/).
54+
* `max_age`: Sets the response header Access-Control-Max-Age for preflight requests.
55+
* `encode`: the encoder to use for responses (sensibly defaults to `graphql_server.json_encode`).
56+
* `format_error`: the error formatter to use for responses (sensibly defaults to `graphql_server.default_format_error`.
57+
* `enable_async`: whether `async` mode will be enabled.
58+
* `subscriptions`: The GraphiQL socket endpoint for using subscriptions in graphql-ws.
59+
* `headers`: An optional GraphQL string to use as the initial displayed request headers, if not provided, the stored headers will be used.
60+
* `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.
61+
* `header_editor_enabled`: An optional boolean which enables the header editor when true. Defaults to **false**.
62+
* `should_persist_headers`: An optional boolean which enables to persist headers to storage when true. Defaults to **false**.
63+
64+
65+
You can also subclass `GraphQLView` and overwrite `get_root_value(self, request)` to have a dynamic root value per request.
66+
67+
```python
68+
class UserRootValue(GraphQLView):
69+
def get_root_value(self, request):
70+
return request.user
71+
```
72+
73+
## Contributing
74+
See [CONTRIBUTING.md](../CONTRIBUTING.md)

docs/webob.md

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# WebOb-GraphQL
2+
3+
Adds GraphQL support to your WebOb (Pyramid, Pylons, ...) application.
4+
5+
## Installation
6+
7+
To install the integration with WebOb, run the below command on your terminal.
8+
9+
`pip install graphql-server-core[webob]`
10+
11+
## Usage
12+
13+
Use the `GraphQLView` view from `graphql_server.webob`
14+
15+
### Pyramid
16+
17+
```python
18+
from wsgiref.simple_server import make_server
19+
from pyramid.config import Configurator
20+
21+
from graphql_server.webob import GraphQLView
22+
23+
from schema import schema
24+
25+
def graphql_view(request):
26+
return GraphQLView(request=request, schema=schema, graphiql=True).dispatch_request(request)
27+
28+
if __name__ == '__main__':
29+
with Configurator() as config:
30+
config.add_route('graphql', '/graphql')
31+
config.add_view(graphql_view, route_name='graphql')
32+
app = config.make_wsgi_app()
33+
server = make_server('0.0.0.0', 6543, app)
34+
server.serve_forever()
35+
```
36+
37+
This will add `/graphql` endpoint to your app and enable the GraphiQL IDE.
38+
39+
### Supported options for GraphQLView
40+
41+
* `schema`: The `GraphQLSchema` object that you want the view to execute when it gets a valid request.
42+
* `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`.
43+
* `root_value`: The `root_value` you want to provide to graphql `execute`.
44+
* `pretty`: Whether or not you want the response to be pretty printed JSON.
45+
* `graphiql`: If `True`, may present [GraphiQL](https://github.com/graphql/graphiql) when loaded directly from a browser (a useful tool for debugging and exploration).
46+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.0.3"**.
47+
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
48+
* `graphiql_html_title`: The graphiql title to display. Defaults to **"GraphiQL"**.
49+
* `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))
50+
* `middleware`: A list of graphql [middlewares](http://docs.graphene-python.org/en/latest/execution/middleware/).
51+
* `encode`: the encoder to use for responses (sensibly defaults to `graphql_server.json_encode`).
52+
* `format_error`: the error formatter to use for responses (sensibly defaults to `graphql_server.default_format_error`.
53+
* `enable_async`: whether `async` mode will be enabled.
54+
* `subscriptions`: The GraphiQL socket endpoint for using subscriptions in graphql-ws.
55+
* `headers`: An optional GraphQL string to use as the initial displayed request headers, if not provided, the stored headers will be used.
56+
* `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.
57+
* `header_editor_enabled`: An optional boolean which enables the header editor when true. Defaults to **false**.
58+
* `should_persist_headers`: An optional boolean which enables to persist headers to storage when true. Defaults to **false**.
59+
60+
## Contributing
61+
See [CONTRIBUTING.md](../CONTRIBUTING.md)

graphql_server/flask/graphqlview.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ class GraphQLView(View):
3737

3838
methods = ["GET", "POST", "PUT", "DELETE"]
3939

40+
format_error = staticmethod(format_error_default)
41+
encode = staticmethod(json_encode)
42+
4043
def __init__(self, **kwargs):
4144
super(GraphQLView, self).__init__()
4245
for key, value in kwargs.items():
@@ -57,9 +60,6 @@ def get_context_value(self):
5760
def get_middleware(self):
5861
return self.middleware
5962

60-
format_error = staticmethod(format_error_default)
61-
encode = staticmethod(json_encode)
62-
6363
def dispatch_request(self):
6464
try:
6565
request_method = request.method.lower()

graphql_server/sanic/graphqlview.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ class GraphQLView(HTTPMethodView):
4444

4545
methods = ["GET", "POST", "PUT", "DELETE"]
4646

47+
format_error = staticmethod(format_error_default)
48+
encode = staticmethod(json_encode)
49+
4750
def __init__(self, **kwargs):
4851
super(GraphQLView, self).__init__()
4952
for key, value in kwargs.items():
@@ -70,9 +73,6 @@ def get_context(self, request):
7073
def get_middleware(self):
7174
return self.middleware
7275

73-
format_error = staticmethod(format_error_default)
74-
encode = staticmethod(json_encode)
75-
7676
async def dispatch_request(self, request, *args, **kwargs):
7777
try:
7878
request_method = request.method.lower()

graphql_server/webob/graphqlview.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ class GraphQLView:
4040
headers = None
4141
charset = "UTF-8"
4242

43+
format_error = staticmethod(format_error_default)
44+
encode = staticmethod(json_encode)
45+
4346
def __init__(self, **kwargs):
4447
super(GraphQLView, self).__init__()
4548
for key, value in kwargs.items():
@@ -66,9 +69,6 @@ def get_context(self, request):
6669
def get_middleware(self):
6770
return self.middleware
6871

69-
format_error = staticmethod(format_error_default)
70-
encode = staticmethod(json_encode)
71-
7272
def dispatch_request(self, request):
7373
try:
7474
request_method = request.method.lower()

0 commit comments

Comments
 (0)