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
If you had value with type array in source array, then you try to change it to null it will create incorrect patches and it this is accompanied by many warnings.
example
fld: ['a' => 1, 'b' => 2]
target fld = null
If you had value with type array in source array, then you try to change it to null it will create incorrect patches and it this is accompanied by many warnings.
example
fld: ['a' => 1, 'b' => 2]
target fld = null
result: array (size=2)
0 =>
array (size=2)
'op' => string 'remove' (length=6)
'path' => string '/fld/a' (length=31)
1 =>
array (size=2)
'op' => string 'remove' (length=6)
'path' => string '/fld/b' (length=32)
ER:
result: array (size=1)
0 =>
array (size=2)
'op' => string 'replace' (length=6)
'path' => string '/fld' (length=31)
'value' => null
The text was updated successfully, but these errors were encountered: