Yusuf Berki YAZICIOĞLU

Results 3 comments of Yusuf Berki YAZICIOĞLU

This error caused by sending a request to the current_user endpoint with the POST method. The current_user endpoint only supports the GET method. You can fix this issue with #379

I'm still facing the same problem with filtering boolean expressions. As far as I can see the problem is in converting the django code to SQL. When you call boolean...

We discussed this in issue #465. You can simply use this: ```python TmpModel.objects.filter(is_deleted__in=[False]).all() ``` Not this: ```python TmpModel.objects.filter(is_deleted=False).all() ``` I explained the reason for the error with [this comment ](https://github.com/doableware/djongo/issues/465#issuecomment-1414236359)...