You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think he means that in the resulted JsonNode of JsonDiff.asJson(), if there is a "replace", not only the new value is there, but the original value should also be there.
For example,
change a resulted diff json from
[
{
"op": "replace",
"path": "/firstName",
"value": "new first name"
}
]
to
[
{
"op": "replace",
"path": "/firstName", "oldValue": "old first name",
"value": "new first name"
}
]
Hi , can we add old value also in the result i need this in my requirement
please help me to add old value in the result.
The text was updated successfully, but these errors were encountered: