Fixed typo in joins and subqueries (#737)
This commit is contained in:
@ -75,7 +75,7 @@ album = await Album.objects.select_related("tracks").all()
|
|||||||
# Python style
|
# Python style
|
||||||
album = await Album.objects.select_related(Album.tracks).all()
|
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)
|
You can provide a string or a list of strings (or a field/ list of fields)
|
||||||
@ -532,4 +532,4 @@ objects from other side of the relation.
|
|||||||
To read more about `QuerysetProxy` visit [querysetproxy][querysetproxy] section
|
To read more about `QuerysetProxy` visit [querysetproxy][querysetproxy] section
|
||||||
|
|
||||||
|
|
||||||
[querysetproxy]: ../relations/queryset-proxy.md
|
[querysetproxy]: ../relations/queryset-proxy.md
|
||||||
|
|||||||
Reference in New Issue
Block a user