
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
Tells you why mongo fails to validate your document.
In a project of Appier, we use mongodb validator as a "schema". However, as the "schema" grows, it is a pain to see which part of a document fails validation. why.js is a library that can be loaded inside mongo shell and provides a function called why(), which shows a list of validator rules that the doc has violated.
Load why.js into mongo shell, then use why(<name of collection>, <the document you want to insert>)
$ mongo --shell path/to/why.js
MongoDB shell version: 3.2.4
type "help" for help
> why('users', {name: 123})
-------------------------
Unmatched validator rules
-------------------------
[
{
"name": {
"$type": "string"
}
},
{
"password": {
"$exists": true
}
}
]
Under the hood, it applies parts of the specified collection's validator to a temporary collection, and tries inserting the document into that temporary collection. Then it prints out the parts of the validator that cannot validate the document.
You may also specify a validator directly:
$ mongo --shell path/to/why.js
MongoDB shell version: 3.2.4
type "help" for help
> validator = {name: {$type: 'string'}, password: {$exists: true}}
> why(validator, {name: 123})
-------------------------
Unmatched validator rules
-------------------------
[
{
"name": {
"$type": "string"
}
},
{
"password": {
"$exists": true
}
}
]
The third argument for why() is for options.
The options hash and their default value are as follows:
why('CollectionName', documentToTest, {
// when true, it returns unmached validator rules as arrays instead of printing
// them out, so that you can customize the error output
//
quiet: false,
})
There is only one file, why.js, a script that runs in mongo shell.
It only has limited ES2016 support, this should be taken into account during development.
$ mongo test.js
MongoDB shell version: 3.2.4
connecting to: test
# If there is no assertion errors, the test passes.
FAQs
Tells you why mongodb fails to validate your document
We found that mongo-why demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.