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
The current behaviour of the "omitNullValues=true" parameter is the removal of all properties whose value are null. However, null values within arrays will not be removed.
E.g.
{
"nil":null,
"arr":[1,2,3,null,5]
}
will result in
{
"arr":[1,2,3,null,5]
}
and NOT in
{
"arr":[1,2,3,5]
}
Is this the desired behaviour? IMO it is!
The text was updated successfully, but these errors were encountered:
The current behaviour of the "omitNullValues=true" parameter is the removal of all properties whose value are null. However, null values within arrays will not be removed.
E.g.
will result in
and NOT in
Is this the desired behaviour? IMO it is!
The text was updated successfully, but these errors were encountered: