Expected behavior
No records will be deleted when executing an update
Actual behavior
Update Asset Metadata delete records which are not in the query
Steps to reproduce
mutation {
updateAsset
(
id : 320,
input :
{
metadata :
[
{
name:"title",type:"input",data:"title_test_edited_by_n8n"
}
]
}
)
{
success
}
}