forked from isc-afuentes/RESTForms2
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partial updates #4
Comments
Validate that new RESTForms supports this workflow |
Merged
%JSONImport() method allows importing data using different mappings.
However, we should consider if we must use |
Is there a need for a full update? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: