Skip to content

Commit 888a093

Browse files
committed
Update docs
1 parent 663fd56 commit 888a093

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

docs/aiohttp.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,10 @@ gql_view(request) # <-- the instance is callable and expects a `aiohttp.web.Req
5252
* `root_value`: The `root_value` you want to provide to graphql `execute`.
5353
* `pretty`: Whether or not you want the response to be pretty printed JSON.
5454
* `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"**.
55+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.4.7"**.
5656
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
5757
* `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.
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 `Template.render_async` instead of `Template.render`. If environment is not set, fallbacks to simple regex-based renderer.
6059
* `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))
6160
* `middleware`: A list of graphql [middlewares](http://docs.graphene-python.org/en/latest/execution/middleware/).
6261
* `validation_rules`: A list of graphql validation rules.

docs/flask.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ More info at [Graphene v3 release notes](https://github.com/graphql-python/graph
5353
* `root_value`: The `root_value` you want to provide to graphql `execute`.
5454
* `pretty`: Whether or not you want the response to be pretty printed JSON.
5555
* `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"**.
56+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.4.7"**.
5757
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
5858
* `graphiql_html_title`: The graphiql title to display. Defaults to **"GraphiQL"**.
5959
* `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))

docs/sanic.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,10 @@ This will add `/graphql` endpoint to your app and enable the GraphiQL IDE.
4444
* `root_value`: The `root_value` you want to provide to graphql `execute`.
4545
* `pretty`: Whether or not you want the response to be pretty printed JSON.
4646
* `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"**.
47+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.4.7"**.
4848
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
4949
* `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.
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 `Template.render_async` instead of `Template.render`. If environment is not set, fallbacks to simple regex-based renderer.
5251
* `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))
5352
* `middleware`: A list of graphql [middlewares](http://docs.graphene-python.org/en/latest/execution/middleware/).
5453
* `validation_rules`: A list of graphql validation rules.

docs/webob.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This will add `/graphql` endpoint to your app and enable the GraphiQL IDE.
4343
* `root_value`: The `root_value` you want to provide to graphql `execute`.
4444
* `pretty`: Whether or not you want the response to be pretty printed JSON.
4545
* `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"**.
46+
* `graphiql_version`: The graphiql version to load. Defaults to **"1.4.7"**.
4747
* `graphiql_template`: Inject a Jinja template string to customize GraphiQL.
4848
* `graphiql_html_title`: The graphiql title to display. Defaults to **"GraphiQL"**.
4949
* `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))

0 commit comments

Comments
 (0)