django-rest-framework-bulk icon indicating copy to clipboard operation
django-rest-framework-bulk copied to clipboard

Django REST Framework bulk CRUD view mixins

Results 48 django-rest-framework-bulk issues
Sort by recently updated
recently updated
newest added

When trying to PATCH with a list of dicts, I'm getting this error: ``` ERROR: test_bulk_update (api.tests.test_api.test_api_listings_bulk.TestBulkOperationsOnListings) ---------------------------------------------------------------------- Traceback (most recent call last): File "E:\Development\django_projects\api\api.git\api\tests\test_api\test_api_listings_bulk.py", line 92, in test_bulk_update response...

This project seems to be quite heavily used, but has not received any updates since 2015. @miki725 is it dead?

``` Unhandled exception in thread started by Traceback (most recent call last): File "/Users/n/Sites/VEUNDMINT_TUB_Brueckenkurs/venv/lib/python3.5/site-packages/django/utils/autoreload.py", line 226, in wrapper fn(*args, **kwargs) File "/Users/n/Sites/VEUNDMINT_TUB_Brueckenkurs/venv/lib/python3.5/site-packages/django/core/management/commands/runserver.py", line 121, in inner_run self.check(display_num_errors=True) File "/Users/n/Sites/VEUNDMINT_TUB_Brueckenkurs/venv/lib/python3.5/site-packages/django/core/management/base.py", line...

I ran into an issue with a model I was trying to bulk patch that also has a unique_together constraint. Traceback is below. The issue here is that the UniqueTogetherValidator...

Pass the incoming value of the id field trough the field's to_internal_value method, instead of using the raw incoming value.

BulkSerializerMixin uses `get_value()` to get the id of an object, but doesn't use `to_internal_value()` to convert the id to the proper internal value. This works fine for integer ids, but...

I know this project is possibly declared dead, but just fyi, there are places where the construct: if instance: .... is used, and I am finding it evaluates the entire...

Model ``` class Email(models.Model): email = models.EmailField("Email", unique=True) ``` Trying to upgrade to a model with a field with the value of unique = true; generates the following error: ```...

Guys, I am not able to raise the server due to this error after I have inserted the necessary classes for the use of Bulk. ``` Unhandled exception in thread...