diff --git a/docs/img/tutorial/graphql/image01.png b/docs/img/tutorial/graphql/image01.png new file mode 100644 index 000000000..2955cf14d Binary files /dev/null and b/docs/img/tutorial/graphql/image01.png differ diff --git a/docs/src/graphql/tutorial001.py b/docs/src/graphql/tutorial001.py new file mode 100644 index 000000000..41da361d3 --- /dev/null +++ b/docs/src/graphql/tutorial001.py @@ -0,0 +1,14 @@ +import graphene +from fastapi import FastAPI +from starlette.graphql import GraphQLApp + + +class Query(graphene.ObjectType): + hello = graphene.String(name=graphene.String(default_value="stranger")) + + def resolve_hello(self, info, name): + return "Hello " + name + + +app = FastAPI() +app.add_route("/", GraphQLApp(schema=graphene.Schema(query=Query))) diff --git a/docs/tutorial/graphq.md b/docs/tutorial/graphq.md new file mode 100644 index 000000000..45a85d4ad --- /dev/null +++ b/docs/tutorial/graphq.md @@ -0,0 +1,44 @@ + +**FastAPI** has optional support for GraphQL (provided by Starlette directly), using the `graphene` library. + +You can combine normal FastAPI path operations with GraphQL on the same application. + +## Import and use `graphene` + +GraphQL is implemented with Graphene, you can check Graphene's docs for more details. + +Import `graphene` and define your GraphQL data: + +```Python hl_lines="1 6 7 8 9 10" +{!./src/graphql/tutorial001.py!} +``` + +## Add Starlette's `GraphQLApp` + +Then import and add Starlette's `GraphQLApp`: + +```Python hl_lines="3 14" +{!./src/graphql/tutorial001.py!} +``` + +!!! info + 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 + +Run it with Uvicorn and open your browser at http://127.0.0.1:8000. + +You will see GraphiQL web user interface: + + + + +## More details + +For more details, including: + +* Accessing request information +* Adding background tasks +* Using normal or async functions + +check the official Starlette GraphQL docs. diff --git a/mkdocs.yml b/mkdocs.yml index b99021a08..b6cae2fbe 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -61,6 +61,7 @@ nav: - Bigger Applications - Multiple Files: 'tutorial/bigger-applications.md' - Sub Applications - Behind a Proxy: 'tutorial/sub-applications-proxy.md' - Application Configuration: 'tutorial/application-configuration.md' + - GraphQL: 'tutorial/graphq.md' - Concurrency and async / await: 'async.md' - Deployment: 'deployment.md' - Project Generation - Template: 'project-generation.md'