Skip to content

Instantly share code, notes, and snippets.

@akshar-raaj
Created July 9, 2019 11:11
Show Gist options
  • Select an option

  • Save akshar-raaj/2b472d74b68c903b2231239ffff49c16 to your computer and use it in GitHub Desktop.

Select an option

Save akshar-raaj/2b472d74b68c903b2231239ffff49c16 to your computer and use it in GitHub Desktop.
DRF Vanilla view
def get_users(request):
users = list(User.objects.values(‘first_name’, ‘id’))
return JsonResponse(users, safe=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment