Browse Source

📝 Update dependencies docs

pull/11/head
Sebastián Ramírez 6 years ago
parent
commit
ba1bcf76ec
  1. 2
      docs/tutorial/dependencies/first-steps.md
  2. 6
      docs/tutorial/dependencies/second-steps.md

2
docs/tutorial/dependencies/first-steps.md

@ -76,7 +76,7 @@ And you can declare dependencies with `async def` inside of normal `def` path op
It doesn't matter. **FastAPI** will know what to do.
!!! note
If you don't if you should use `async def` or not, check the section about [`async` and `await` in the docs](async.md).
If you don't if you should use `async def` or not, check the section about [`async` and `await` in the docs](/tutorial/async.md).
## Integrated wiht OpenAPI

6
docs/tutorial/dependencies/second-steps.md

@ -61,6 +61,12 @@ And now we can use that model in our code, with all the lovable editor support:
<img src="/img/tutorial/dependencies/image02.png">
## Trees of hierarchical dependencies
With the **Dependency Injection** system you can build arbitrarily deep trees of hierarchical dependencies (also known as dependency graphs) by having dependencies that also have dependencies themselves.
You will see examples of these dependency trees in the next chapters about security.
## Recap
By using Pydantic models in your dependencies too you can keep all the editor support that **FastAPI** is designed to support.
Loading…
Cancel
Save