offset_query
OffsetQuery
Modifies the select query with offset if set
Source code in ormar/queryset/queries/offset_query.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
apply(expr)
Applies the offset clause.
:param expr: query to modify :type expr: sqlalchemy.sql.selectable.Select :return: modified query :rtype: sqlalchemy.sql.selectable.Select
Source code in ormar/queryset/queries/offset_query.py
14 15 16 17 18 19 20 21 22 23 24 25 |
|