Mathematical notation ORM Greater than > __gt Greater than or equal to => __gte Less than < __lt Less than or equal to =< __lte Equal = =
Read More →In the first part, we created a project and connected Django-Rest-Framework, all the code can be viewed here. In the second part I will write how to I watch how endpoints work. For example, let's take the endpoint for creating a user profile. # gcode_server/users/urls.py path('v1/registration', Registration.as_view(), n...
Read More →In this article I will explain how to create an application with Django-Rest-Framework and Vue.js. I will not describe step by step, but will outline only the main points that you need to know about. You can see the entire project code here. Django application will include a user app with a custom user model. Create a Django project...
Read More →