[Answer]-Django: Filtering query from a specific index

1👍

You just use the standard Python slice syntax.

Meeting.objects.all()[10:]

0👍

One solution could be

Meeting.objects.filter(id__gte=10)
👤Ahsan

Leave a comment