Fixed typo in joins and subqueries (#737)

This commit is contained in:
Nikita Verba
2022-07-09 10:28:42 +03:00
committed by GitHub
parent 551c7035c0
commit 8a39ab07d9

View File

@ -75,7 +75,7 @@ album = await Album.objects.select_related("tracks").all()
# Python style
album = await Album.objects.select_related(Album.tracks).all()
# will return album will all columns tracks
# will return album with all columns tracks
```
You can provide a string or a list of strings (or a field/ list of fields)