Для работы Есть задача, которую у меня не получается решить с помощью django. Имеем БД: https://editor.ponyorm.com/user/wolfy/motion_backend_team1/designer Задача: Написать разные запросы api/social/followers/toggle-follow// POST: Toggle follow/unfollow a user api/social/followers/followers/ GET: List of all the logged in user’s followe s api/social/followers/following/ GET: List of all the people the current logged in user is following api/social/friends/request// POST: Send friend request to another user api/social/friends/requests// GET: Get details of a friend request api/social/friends/requests// PATCH: Accept or Reject an open friend request api/social/friends/requests// DELETE: Delete a friend request api/social/friends/ GET: List all accepted friends api/users/ GET: Get all the users api/users/?search= GET: Search users api/users// GET: Get specific user profile.