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
Currently old RESTForms supports partial object updates.
For example you have a person object: { _id: 1, Name: Alice, Location: London}
You can send a PUT request { _id:1, Location: Wonderland} and it would update the object to: { _id: 1, Name: Alice, Location: Wonderland}.
Note that the Name stayed the same (so it's not NULL).
The text was updated successfully, but these errors were encountered:
Currently old RESTForms supports partial object updates.
For example you have a person object:
{ _id: 1, Name: Alice, Location: London}
You can send a PUT request
{ _id:1, Location: Wonderland}
and it would update the object to:{ _id: 1, Name: Alice, Location: Wonderland}
.Note that the Name stayed the same (so it's not NULL).
The text was updated successfully, but these errors were encountered: