Giter Site home page Giter Site logo

Comments (12)

ayushin avatar ayushin commented on August 21, 2024 10

Is there any progress on this?

from drf-writable-nested.

ruscoder avatar ruscoder commented on August 21, 2024 6

Hello @isasiluis28! Thank you for the contribution.
UniqueFieldsMixin cannot work with unique_together validator for the moment.

But I think it is possible to support this validator.

from drf-writable-nested.

Telemaco019 avatar Telemaco019 commented on August 21, 2024 2

Is there any progress? Is unique_together validator going to be supported in one of the next releases?

from drf-writable-nested.

FranzForstmayr avatar FranzForstmayr commented on August 21, 2024 1

@ruscoder
Can you give a hint what's necessary to get this issue fixed?

from drf-writable-nested.

ir4y avatar ir4y commented on August 21, 2024

Hi @isasiluis28
Thank you for the contribution.

Can you add a test which reproduces the bug?

from drf-writable-nested.

isasiluis28 avatar isasiluis28 commented on August 21, 2024

Sure @ir4y
Suppose we add a new register via POST like this
screen shot 2018-08-30 at 8 49 13 am

This is the object we have created
screen shot 2018-08-30 at 8 51 46 am

Then if we try to update creating a new object for producto_detalles (without the ID field, this is because we want to delete the other objects), but with same ID of veterinaria that is already there before the update (which by the way is the one with a constraint)
screen shot 2018-08-30 at 8 57 23 am

Then it raises an IntegrityError
screen shot 2018-08-30 at 8 58 57 am

I think the problem is that is trying to create the new reverse relations without deleting the previous ones, so at that point we still have the previous objects, and when it tries to create the new relations it will raise an IntegrityError beacause of the existance of an object that already satisfies the constraint.
I think that the algorithm has to remove first the relations where the IDs are not found anymore, then create the new reverse relations.

Looking at the code that handles the updates in NestedUpdateMixin I found that first tries to create or update the new relations, then deletes the relations that are no longer needed, doesn't it have to be the other way around? meaning first delete the relations, then create the new ones?
screen shot 2018-08-30 at 9 14 42 am

from drf-writable-nested.

ir4y avatar ir4y commented on August 21, 2024

I mean fork drf-writable-nested and add the test which will fail. TDD style.
Reproduce your issue in code.

from drf-writable-nested.

skamensky avatar skamensky commented on August 21, 2024

@ruscoder , any advice on how to implement this? I'd give it a go.

from drf-writable-nested.

samomar avatar samomar commented on August 21, 2024

UniqueFieldsMixin does not work with unique_together for me

I have to send an empty list that deletes the items first then send the new items

I guess the way it works by default, it deletes the previous nested items and creates a new ones, we should await and confirm the items are deleted before sending in new items otherwise it'll raise an IntegrityError

from drf-writable-nested.

samomar avatar samomar commented on August 21, 2024

The only way I can get this to work is by passing an ID or making one of my unique fields a primary key.

from drf-writable-nested.

JohnMulligan avatar JohnMulligan commented on August 21, 2024

I hit a wall on this as well.

from drf-writable-nested.

ruscoder avatar ruscoder commented on August 21, 2024

Hi. Unfortunately, I haven't used drf-writable-nested for more than 6 years and I can't give a hint on how to implement it properly without diving into the implementation, but according to the discussion above there's a workaround suggested in #50 that has one limitation, but it might be not relevant for someone who affected by this issue.

So, I can recommend something like

class CustomWritableNestedModelSerializer(WritableNestedModelSerializer):
    def update(self, instance, validated_data):
        relations, reverse_relations = self._extract_relations(validated_data)

        # Create or update direct relations (foreign key, one-to-one)
        self.update_or_create_direct_relations(
            validated_data,
            relations,
        )

        # Update instance
        instance = super(NestedUpdateMixin, self).update(
            instance,
            validated_data,
        )
        self.delete_reverse_relations_if_need(instance, reverse_relations)
        self.update_or_create_reverse_relations(instance, reverse_relations)
        instance.refresh_from_db()
        return instance

that is actually copy-paste of original update with changed order of invocation of delete_reverse_relations_if_need and update_or_create_reverse_relations (according to the suggestions from #50).

In general, if someone would like to solve a conflict between #50 and #36 it might be merged into the main branch.

from drf-writable-nested.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.