Pagination and rows number
Following methods allow you to paginate and limit number of rows in queries.
paginate(page: int) -> QuerySetlimit(limit_count: int) -> QuerySetoffset(offset: int) -> QuerySet__getitem__(key: int | slice) -> QuerySetget() -> Modelfirst() -> Modelfirst_or_none() -> Optional[Model]last() -> Model-
last_or_none() -> Optional[Model] -
QuerysetProxyQuerysetProxy.paginate(page: int)methodQuerysetProxy.limit(limit_count: int)methodQuerysetProxy.offset(offset: int)methodQuerysetProxy.__getitem__(key: int | slice)methodQuerysetProxy.first_or_none()methodQuerysetProxy.last()methodQuerysetProxy.last_or_none()method
paginate
paginate(page: int, page_size: int = 20) -> QuerySet
Combines the offset and limit methods based on page number and size
| Python | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 | |
| Python | |
|---|---|
1 2 3 | |
Note that paginate(2) is equivalent to offset(20).limit(20)
limit
limit(limit_count: int, limit_raw_sql: bool = None) -> QuerySet
You can limit the results to desired number of parent models.
To limit the actual number of database query rows instead of number of main models
use the limit_raw_sql parameter flag, and set it to True.
| Python | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 | |
| Python | |
|---|---|
1 2 | |
Note
All methods that do not return the rows explicitly returns a QuerySet instance so you can chain them together
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()
offset
offset(offset: int, limit_raw_sql: bool = None) -> QuerySet
You can also offset the results by desired number of main models.
To offset the actual number of database query rows instead of number of main models
use the limit_raw_sql parameter flag, and set it to True.
| Python | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 | |
| Python | |
|---|---|
1 2 | |
Note
All methods that do not return the rows explicitly returns a QuerySet instance so you can chain them together
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()
slicing with __getitem__
A QuerySet can also be sliced with Python integer or slice syntax. Each
call returns a new QuerySet with LIMIT/OFFSET set accordingly — you still
need to await it with .all() to actually run the query.
| Python | |
|---|---|
1 2 3 4 | |
Negative indices and negative slice bounds are supported too. Internally they are translated into a reversed-order query plus an in-memory list reversal, so the caller still sees results in the original ordering:
| Python | |
|---|---|
1 2 3 | |
Note
Slice shapes that would require a COUNT(*) round-trip to resolve — a
bare [:-N], or mixed positive/negative bounds like [3:-2] — raise
QueryDefinitionError. If you need "all except the last N", fetch
.count() explicitly and combine it with .offset()/.limit().
A step other than 1 is not supported, and a non-integer / non-slice
key (e.g. objects["foo"]) also raises QueryDefinitionError.
Each slice replaces any previous pagination state rather than composing with it — avoid chaining multiple slices on the same queryset.
get
get(**kwargs) -> Model
Gets the first row from the db meeting the criteria set by kwargs.
If no criteria is set it will return the last row in db sorted by pk. (The criteria cannot be set also with filter/exclude).
Tip
To read more about get visit read/get
first
first() -> Model
Gets the first row from the db ordered by primary key column ascending.
Tip
To read more about first visit read/first
first_or_none
first_or_none() -> Optional[Model]
Same as first() but returns None instead of raising NoMatch when no
row matches.
Tip
To read more about first_or_none visit read/first_or_none
last
last() -> Model
Gets the last row from the db ordered by primary key column descending.
Complementary to first() — the default pk ordering is flipped and the top
row is returned.
| Python | |
|---|---|
1 2 | |
Tip
To read more about last visit read/last
last_or_none
last_or_none() -> Optional[Model]
Same as last() but returns None instead of raising NoMatch when no
row matches.
Tip
To read more about last_or_none visit read/last_or_none
QuerysetProxy methods
When access directly the related ManyToMany field as well as ReverseForeignKey
returns the list of related models.
But at the same time it exposes subset of QuerySet API, so you can filter, create, select related etc related models directly from parent model.
paginate
Works exactly the same as paginate function above but allows you to paginate related objects from other side of the relation.
Tip
To read more about QuerysetProxy visit querysetproxy section
limit
Works exactly the same as limit function above but allows you to paginate related objects from other side of the relation.
Tip
To read more about QuerysetProxy visit querysetproxy section
offset
Works exactly the same as offset function above but allows you to paginate related objects from other side of the relation.
Tip
To read more about QuerysetProxy visit querysetproxy section
slicing with __getitem__
Works exactly the same as slicing above but on the relation side:
| Python | |
|---|---|
1 | |
Tip
To read more about QuerysetProxy visit querysetproxy section