I was asked to create the backend of a project using Django (the frontend is angular). So I thought about using rest framework but I'm a total beginner and raw sql queries are needed for this project. To be more precise it's a complex query that needs many tables: they provided the sql script that I need to use it directly.
My question is does rest framework allow such raw queries (because I was not able to find a tutorial about that) or do I need something else?
Edit for further explanation: I'm I able to return complex queries in rest framework as a GET request for example? Any help is appreciated.