I would like POST with nested data, but don't succeed.
Sample:
{
"title": "test",
"cover": { //ManyToOne connection to MediaItem Entity
"id": 1 // This MediaItem is exist
}
}
Response: Update is not allowed for this operation.
but when I update item (PUT) then process is good.
I don't want to use this code:
{
"title": "test",
"cover": "/media_item/1"
}