I am using Spring Data REST using a CRUD repository, some values should be optionally NULL, however if I try to set them to null, the fields in question get ignored. If I send non-NULL data it works as expected
Is there are a way to allow this functionality?
Here is a sample PUT request body
{
"name": "Ash Test",
"distance": null,
"paid": null,
"startDate": null,
"tags": [ ],
"position": 3,
"creator": true,
"memberId": 55
}