django get object first element of queryset code example
Example 1: django queryset first element
queryset.first()
Example 2: query first 5 element in django
Employer.objects.values('id').annotate(jobtitle_count=Count('jobtitle')).order_by('-jobtitle_count')[:5]