We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
An update should be done like this
Table.update({id: 1}, {$set: {hello: 'world'}}).exec();
If the user does this
Table.update({id: 1}, {hello: 'world'}).exec();
The current record should be removed and we should insert the new record. Just like mongodb does.
The text was updated successfully, but these errors were encountered:
It's related to #66. If we find a good way of doing this, these two issues could be fixed in the same way.
Sorry, something went wrong.
No branches or pull requests
An update should be done like this
If the user does this
The current record should be removed and we should insert the new record. Just like mongodb does.
The text was updated successfully, but these errors were encountered: