Skip to content

Instantly share code, notes, and snippets.

@sankalpjonn
Created January 9, 2021 02:41
from rest_framework import pagination
from rest_framework.response import Response
from collections import OrderedDict
class CustomPagination(pagination.CursorPagination):
page_size = 2
cursor_query_param = 'c'
ordering = '-id'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment