-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
I'm trying to find a way to reduce unnecessary array patches and I'm curious if there is a solution for this scenario. I have items that contain an array of objects like this:
{
"things": [
{
"id": "123",
"foo": "jiff",
"bar": "jiff"
},
{
"id": "abc",
"foo": "jiff",
"bar": "jiff"
}
]
}Currently when I diff changes to this type of structure I end up with add and remove operations for entire "things" objects even when only a single property in the object changes (e.g. things[0].foo changes but the other properties remain constant).
I understand why this happens but is there a way to provide a hint to jiff so that it could match array objects on their "id" value? Or is that something that a feature that you would consider including?
crh225 and Wsiegenthaler
Metadata
Metadata
Assignees
Labels
No labels