Answers for "django queries only id"

0

get a list of ids from queryset django

author = Blog.objects.filter(author=author)
ids    = author.values_list('pk', flat=True)

# list method get ids without parse the returning queryset

print(list(ids))
Posted by: Guest on September-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language