Skip to content

Instantly share code, notes, and snippets.

@goutomroy
Last active June 6, 2019 12:48
Show Gist options
  • Save goutomroy/c3ee96c1db77ea6958088f2f90dc72df to your computer and use it in GitHub Desktop.
Save goutomroy/c3ee96c1db77ea6958088f2f90dc72df to your computer and use it in GitHub Desktop.
@query_debugger
def book_list():
queryset = Book.objects.all()
books = []
for book in queryset:
books.append({'id': book.id, 'name': book.name, 'publisher': book.publisher.name})
return books
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment