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
When using this method it does not change the value of deleted field in mongodb to false instead it deletes this field.
The text was updated successfully, but these errors were encountered:
Fixed here: #157
Sorry, something went wrong.
Depending on wether use$neOperator is set to true or false we get defective results either way at the moment:
use$neOperator: false countDocuments (1), countDocumentsWithDeleted (6), countDocumentsDeleted (5) ==> restore() countDocuments (1), countDocumentsWithDeleted (6), countDocumentsDeleted (3) --> countDocuments should be (3)!
use$neOperator: true countDocuments (1), countDocumentsWithDeleted (6), countDocumentsDeleted (5) ==> restore() countDocuments (3), countDocumentsWithDeleted (6), countDocumentsDeleted (5) --> countDocumentsDeleted should be (3)
It would be great if that/a solution could be published soon :) Thanks!
No branches or pull requests
When using this method it does not change the value of deleted field in mongodb to false instead it deletes this field.
The text was updated successfully, but these errors were encountered: