Что не так с моим запросом upsertWithWhere?Мне нужно обновить модель с тем же значением, которое я передаю в качестве параметров, за исключением параметра URI, он отличается.
function assegnaUri(hash_referto, proprietario, public_key, data_esame, tipo_esame, uri) {
fetch('http://localhost:8080/api/REFERTOs/upsertWithWhere?where {"hash_referto":"' + hash_referto + '"}}', {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"hash_referto": hash_referto,
"proprietario": proprietario,
"public_key": public_key,
"data_esame": data_esame,
"tipo_esame": tipo_esame,
"uri": uri
}),
});
}