Fix typo in select columns docs

This commit is contained in:
johnthagen
2021-10-05 09:38:32 -04:00
committed by GitHub
parent fc067596c8
commit fd0d59fca5

View File

@ -176,7 +176,7 @@ await Car.objects.select_related('manufacturer').fields({'id': ...,
So operations like `filter()`, `select_related()`, `limit()` and `offset()` etc. can be chained. So operations like `filter()`, `select_related()`, `limit()` and `offset()` etc. can be chained.
Something like `Track.object.select_related("album").filter(album__name="Malibu").offset(1).limit(1).all()` Something like `Track.objects.select_related("album").filter(album__name="Malibu").offset(1).limit(1).all()`
## exclude_fields ## exclude_fields
@ -312,4 +312,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