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
This error happens when answering an argument. $pushAll is deprecated since 2.4 (see https://docs.mongodb.com/v3.2/reference/operator/update/pushAll/) and removed since 4.0.
Installed Mongoose version 4.10.8 But you should really bump all the dependencies since a lot of them have security issues
Request : http://localhost:3001/api/v2/comments/5b3c87d7375a9240517e1701/reply
{ id : 5b3c87d7375a9240517e1701 text : hello }
Response :
{"status":500,"error":{"code":9,"message":"Unknown modifier: $pushAll"}}
The text was updated successfully, but these errors were encountered:
you have to add { usePushEach: true } on each new Schema options of comment.js cf. below :
var Flag = new Schema({ author: { type: ObjectId, ref: 'User', required: true }, value: { type: String, enum: [ 'spam' ], required: true }, createdAt: { type: Date, default: Date.now } }, { usePushEach: true })
Sorry, something went wrong.
No branches or pull requests
This error happens when answering an argument.
$pushAll is deprecated since 2.4 (see https://docs.mongodb.com/v3.2/reference/operator/update/pushAll/) and removed since 4.0.
Installed Mongoose version 4.10.8
But you should really bump all the dependencies since a lot of them have security issues
Request : http://localhost:3001/api/v2/comments/5b3c87d7375a9240517e1701/reply
Response :
The text was updated successfully, but these errors were encountered: