9 lines
220 B
Python
9 lines
220 B
Python
from rest_framework.pagination import CursorPagination
|
|
|
|
|
|
class StandardCursorPagination(CursorPagination):
|
|
page_size = 50
|
|
page_size_query_param = "limit"
|
|
cursor_query_param = "cursor"
|
|
max_page_size = 100
|