loopback
loopback copied to clipboard
MongoDb connector : Error "E11000 duplicate key error index: _id: {_id} when use PATCH api
I research some solutions like
loopback MongoError: E11000 duplicate key error collection: my-db.News index: _id_ dup key
// set /models/ .json like
// or
"idInjection": false,
"forceId": false
// or set
"properties" : {
"id": {
"type": "string",
"mongodb": {dataType: 'ObjectId'}
}
}
// or set in model-config.json
"options": {
"strictObjectIDCoercion": true
}
but still not working
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.