Merge pull request #361 from johnthagen/patch-2
Fix typo in select columns docs
This commit is contained in:
@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user