Miroslav Shubernetskiy

Results 109 comments of Miroslav Shubernetskiy

What's your traceback? On Feb 17, 2015 9:52 PM, "nikolaz111" [email protected] wrote: > I'm trying to use the new bulk update that uses DRF 3. When I try to bulk...

Don't see anything wrong. Will need to debug.

Seems like this is an issue in DRF itself. It blows up [here](https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/validators.py#L132-L133).

Just opened PR in DRF with a preliminary fix - https://github.com/tomchristie/django-rest-framework/pull/2575 Please let me know if that fixes your problem.

@Jcbobo88 can you post your test case?

Interesting though. Not sure how to handle that right now but will give it a though. If you want to implement that, PR would be welcome.

the original intention is to be able to import useful modules directly from the package: ``` python from rest_framework_bulk import .... ``` its not strictly necessary however I think it...

> but ideally, a Serializer should be testable in isolation, with no notion of a view involved. I agree with that. > Make to_internal_value() look at instance(s) somehow to determine...

Unfortunately no. Currently only simple integer `id` field is supported. If you already got it working, PR would be welcome!

I dont think so at the moment but will look into it sometime. Current busy at work. This will mainly depend on how Serializer works. Maybe it supports this and...