I go through the Django queryset and i found many methods to limit the queryset in django
But right now i am looking for the solution for my problem that is
suppose if i want to filter the data from id 10 to till last
get_meetings = Meeting.objects.all() # will return the all meeting from 0 to last
i want the details of all meeting from index 10 to last
?
You just use the standard Python slice syntax.