Reputation: 627
How to see SQL queries in django rest framework?
I want "see" this queries. Reading around internet, I found some issues with django-debug-toolbar... Is there a way wihout use django-toolbar?
Upvotes: 0
Views: 888
Reputation: 696
Lets say u have a following orm :
users = User.objects.all()
Then u can use the debugger or python shell to see the query as follows :
print(users.query)
Upvotes: 1