Browse Source

📝 Update GraphQL docs, recommend Strawberry (#3981)

pull/3978/head
Sebastián Ramírez 4 years ago
committed by GitHub
parent
commit
4b968c4e39
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      README.md
  2. 1
      docs/de/docs/features.md
  3. 2
      docs/de/docs/index.md
  4. 56
      docs/en/docs/advanced/graphql.md
  5. 3
      docs/en/docs/alternatives.md
  6. 1
      docs/en/docs/features.md
  7. 3
      docs/en/docs/index.md
  8. 26
      docs_src/graphql/tutorial001.py

3
README.md

@ -418,9 +418,9 @@ For a more complete example including more features, see the <a href="https://fa
* A very powerful and easy to use **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system. * A very powerful and easy to use **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system.
* Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth. * Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth.
* More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic). * More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic).
* **GraphQL** integration with <a href="https://strawberry.rocks" class="external-link" target="_blank">Strawberry</a> and other libraries.
* Many extra features (thanks to Starlette) as: * Many extra features (thanks to Starlette) as:
* **WebSockets** * **WebSockets**
* **GraphQL**
* extremely easy tests based on `requests` and `pytest` * extremely easy tests based on `requests` and `pytest`
* **CORS** * **CORS**
* **Cookie Sessions** * **Cookie Sessions**
@ -447,7 +447,6 @@ Used by Starlette:
* <a href="https://andrew-d.github.io/python-multipart/" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`. * <a href="https://andrew-d.github.io/python-multipart/" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`.
* <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support. * <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support.
* <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI). * <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI).
* <a href="https://graphene-python.org/" target="_blank"><code>graphene</code></a> - Required for `GraphQLApp` support.
* <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`. * <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`.
Used by FastAPI / Starlette: Used by FastAPI / Starlette:

1
docs/de/docs/features.md

@ -167,7 +167,6 @@ Mit **FastAPI** bekommen Sie viele von **Starlette**'s Funktionen (da FastAPI nu
* Stark beeindruckende Performanz. Es ist <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">eines der schnellsten Python frameworks, auf Augenhöhe mit **NodeJS** und **Go**</a>. * Stark beeindruckende Performanz. Es ist <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">eines der schnellsten Python frameworks, auf Augenhöhe mit **NodeJS** und **Go**</a>.
* **WebSocket**-Unterstützung. * **WebSocket**-Unterstützung.
* **GraphQL**-Unterstützung.
* Hintergrundaufgaben im selben Prozess. * Hintergrundaufgaben im selben Prozess.
* Ereignisse für das Starten und Herunterfahren. * Ereignisse für das Starten und Herunterfahren.
* Testclient basierend auf `requests`. * Testclient basierend auf `requests`.

2
docs/de/docs/index.md

@ -425,7 +425,6 @@ For a more complete example including more features, see the <a href="https://fa
* More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic). * More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic).
* Many extra features (thanks to Starlette) as: * Many extra features (thanks to Starlette) as:
* **WebSockets** * **WebSockets**
* **GraphQL**
* extremely easy tests based on `requests` and `pytest` * extremely easy tests based on `requests` and `pytest`
* **CORS** * **CORS**
* **Cookie Sessions** * **Cookie Sessions**
@ -452,7 +451,6 @@ Used by Starlette:
* <a href="https://andrew-d.github.io/python-multipart/" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`. * <a href="https://andrew-d.github.io/python-multipart/" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`.
* <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support. * <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support.
* <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI). * <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI).
* <a href="https://graphene-python.org/" target="_blank"><code>graphene</code></a> - Required for `GraphQLApp` support.
* <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`. * <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`.
Used by FastAPI / Starlette: Used by FastAPI / Starlette:

56
docs/en/docs/advanced/graphql.md

@ -1,44 +1,56 @@
# GraphQL # GraphQL
**FastAPI** has optional support for GraphQL (provided by Starlette directly), using the `graphene` library. As **FastAPI** is based on the **ASGI** standard, it's very easy to integrate any **GraphQL** library also compatible with ASGI.
You can combine normal FastAPI *path operations* with GraphQL on the same application. You can combine normal FastAPI *path operations* with GraphQL on the same application.
## Import and use `graphene` !!! tip
**GraphQL** solves some very specific use cases.
GraphQL is implemented with Graphene, you can check <a href="https://docs.graphene-python.org/en/latest/quickstart/" class="external-link" target="_blank">Graphene's docs</a> for more details. It has **advantages** and **disadvantages** when compared to common **web APIs**.
Import `graphene` and define your GraphQL data: Make sure you evaluate if the **benefits** for your use case compensate the **drawbacks**. 🤓
```Python hl_lines="1 6-10" ## GraphQL Libraries
{!../../../docs_src/graphql/tutorial001.py!}
``` Here are some of the **GraphQL** libraries that have **ASGI** support. You could use them with **FastAPI**:
* <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry</a> 🍓
* With <a href="https://strawberry.rocks/docs/integrations/fastapi" class="external-link" target="_blank">docs for FastAPI</a>
* <a href="https://ariadnegraphql.org/" class="external-link" target="_blank">Ariadne</a>
* With <a href="https://ariadnegraphql.org/docs/starlette-integration" class="external-link" target="_blank">docs for Starlette</a> (that also apply to FastAPI)
* <a href="https://tartiflette.io/" class="external-link" target="_blank">Tartiflette</a>
* With <a href="https://tartiflette.github.io/tartiflette-asgi/" class="external-link" target="_blank">Tartiflette ASGI</a> to provide ASGI integration
* <a href="https://graphene-python.org/" class="external-link" target="_blank">Graphene</a>
* With <a href="https://github.com/ciscorn/starlette-graphene3" class="external-link" target="_blank">starlette-graphene3</a>
## GraphQL with Strawberry
If you need or want to work with **GraphQL**, <a href="https://strawberry.rocks/" class="external-link" target="_blank">**Strawberry**</a> is the **recommended** library as it has the design closest to **FastAPI's** design, it's all based on **type annotations**.
## Add Starlette's `GraphQLApp` Depending on your use case, you might prefer to use a different library, but if you asked me, I would probably suggest you try **Strawberry**.
Then import and add Starlette's `GraphQLApp`: Here's a small preview of how you could integrate Strawberry with FastAPI:
```Python hl_lines="3 14" ```Python hl_lines="3 22 25-26"
{!../../../docs_src/graphql/tutorial001.py!} {!../../../docs_src/graphql/tutorial001.py!}
``` ```
!!! info You can learn more about Strawberry in the <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry documentation</a>.
Here we are using `.add_route`, that is the way to add a route in Starlette (inherited by FastAPI) without declaring the specific operation (as would be with `.get()`, `.post()`, etc).
## Check it And also the docs about <a href="https://strawberry.rocks/docs/integrations/fastapi" class="external-link" target="_blank">Strawberry with FastAPI</a>.
Run it with Uvicorn and open your browser at <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>. ## Older `GraphQLApp` from Starlette
You will see GraphiQL web user interface: Previous versions of Starlette included a `GraphQLApp` class to integrate with <a href="https://graphene-python.org/" class="external-link" target="_blank">Graphene</a>.
<img src="/img/tutorial/graphql/image01.png"> It was deprecated from Starlette, but if you have code that used it, you can easily **migrate** to <a href="https://github.com/ciscorn/starlette-graphene3" class="external-link" target="_blank">starlette-graphene3</a>, that covers the same use case and has an **almost identical interface**.
## More details !!! tip
If you need GraphQL, I still would recommend you check out <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry</a>, as it's based on type annotations instead of custom classes and types.
For more details, including: ## Learn More
* Accessing request information You can learn more about **GraphQL** in the <a href="https://graphql.org/" class="external-link" target="_blank">official GraphQL documentation</a>.
* Adding background tasks
* Using normal or async functions
check the official <a href="https://www.starlette.io/graphql/" class="external-link" target="_blank">Starlette GraphQL docs</a>. You can also read more about each those libraries described above in their links.

3
docs/en/docs/alternatives.md

@ -367,7 +367,6 @@ It has:
* Seriously impressive performance. * Seriously impressive performance.
* WebSocket support. * WebSocket support.
* GraphQL support.
* In-process background tasks. * In-process background tasks.
* Startup and shutdown events. * Startup and shutdown events.
* Test client built on requests. * Test client built on requests.
@ -375,7 +374,7 @@ It has:
* Session and Cookie support. * Session and Cookie support.
* 100% test coverage. * 100% test coverage.
* 100% type annotated codebase. * 100% type annotated codebase.
* Zero hard dependencies. * Few hard dependencies.
Starlette is currently the fastest Python framework tested. Only surpassed by Uvicorn, which is not a framework, but a server. Starlette is currently the fastest Python framework tested. Only surpassed by Uvicorn, which is not a framework, but a server.

1
docs/en/docs/features.md

@ -164,7 +164,6 @@ With **FastAPI** you get all of **Starlette**'s features (as FastAPI is just Sta
* Seriously impressive performance. It is <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">one of the fastest Python frameworks available, on par with **NodeJS** and **Go**</a>. * Seriously impressive performance. It is <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">one of the fastest Python frameworks available, on par with **NodeJS** and **Go**</a>.
* **WebSocket** support. * **WebSocket** support.
* **GraphQL** support.
* In-process background tasks. * In-process background tasks.
* Startup and shutdown events. * Startup and shutdown events.
* Test client built on `requests`. * Test client built on `requests`.

3
docs/en/docs/index.md

@ -419,9 +419,9 @@ For a more complete example including more features, see the <a href="https://fa
* A very powerful and easy to use **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system. * A very powerful and easy to use **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system.
* Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth. * Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth.
* More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic). * More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic).
* **GraphQL** integration with <a href="https://strawberry.rocks" class="external-link" target="_blank">Strawberry</a> and other libraries.
* Many extra features (thanks to Starlette) as: * Many extra features (thanks to Starlette) as:
* **WebSockets** * **WebSockets**
* **GraphQL**
* extremely easy tests based on `requests` and `pytest` * extremely easy tests based on `requests` and `pytest`
* **CORS** * **CORS**
* **Cookie Sessions** * **Cookie Sessions**
@ -448,7 +448,6 @@ Used by Starlette:
* <a href="https://andrew-d.github.io/python-multipart/" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`. * <a href="https://andrew-d.github.io/python-multipart/" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`.
* <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support. * <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support.
* <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI). * <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI).
* <a href="https://graphene-python.org/" target="_blank"><code>graphene</code></a> - Required for `GraphQLApp` support.
* <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`. * <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`.
Used by FastAPI / Starlette: Used by FastAPI / Starlette:

26
docs_src/graphql/tutorial001.py

@ -1,14 +1,26 @@
import graphene import strawberry
from fastapi import FastAPI from fastapi import FastAPI
from starlette.graphql import GraphQLApp from strawberry.asgi import GraphQL
class Query(graphene.ObjectType): @strawberry.type
hello = graphene.String(name=graphene.String(default_value="stranger")) class User:
name: str
age: int
def resolve_hello(self, info, name):
return "Hello " + name
@strawberry.type
class Query:
@strawberry.field
def user(self) -> User:
return User(name="Patrick", age=100)
schema = strawberry.Schema(query=Query)
graphql_app = GraphQL(schema)
app = FastAPI() app = FastAPI()
app.add_route("/", GraphQLApp(schema=graphene.Schema(query=Query))) app.add_route("/graphql", graphql_app)
app.add_websocket_route("/graphql", graphql_app)

Loading…
Cancel
Save