Mementifier recursively applies ignoreDefaults and child objects overwrite parents

Description

Use case: We have Quick user object; users have familyMembersChildren (hasManyThrough → Child) and familyMembers have mostRecentRegistrations (hasOne).

If I get a user and a mementify it to ask for familyMembersChildren it works as expected with an array of children attached to each user.

If I ask for familyMembersChildren and familyMembersChildren.mostRecentRegistration – then I get the mostRecentRegistration record in place of the child record, e.g. instead of

I get

Our investigation suggests that getMemento(includes=["foo", "foo.bar"], ignoreDefaults=true) means "recursively mementify foo, but, because nested child includes have been mentioned, recursively apply ignore defaults"modules/mementifier/interceptors/Mementifier.cfc:357 

Because ignoredefaults=true with an includes list of ["bar"] means "mementify this thing exactly just with bar"`

In other words: mementifier doesn’t like it if you ask for [root.thing] as well as [root.thing.childThing]

Tested this on Mementifier v2 and v3 (current). Quick is v4 but I don’t think this has anything to do with Quick exactly.

Activity

Show:

David RogersSeptember 25, 2023 at 8:13 PM

I’ve posted a failing test that reproduces what we believe to be a bug.


The gist is

behaves differently, in an way that seems unexpected, when serializing bs

Luis MajanoSeptember 18, 2023 at 1:02 PM

I have added test cases and manually tested these scenarios, but I cannot replicate the issue. You can find the code here: https://github.com/coldbox-modules/mementifier/commit/82e72c961f7a26e631f289d80b64fc0572b9a790

Samuel W. KnowltonApril 3, 2023 at 3:42 PM

Test case (reliant on our test harnass, so illustrating but not reproducible) and a workaround (not a solution)

Override for getMemento() on CHILD (the intermediate entity in the mementifier list, familyMembersChildren)

test case:

Cannot Reproduce
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Priority

Sentry

Created April 3, 2023 at 3:08 PM
Updated September 25, 2023 at 8:13 PM
Resolved September 18, 2023 at 1:02 PM