Skip to content

Instantly share code, notes, and snippets.

@danared
Created October 27, 2015 13:29
Show Gist options
  • Save danared/383ea911d88874778269 to your computer and use it in GitHub Desktop.
Save danared/383ea911d88874778269 to your computer and use it in GitHub Desktop.
db.runCommand({
collMod: "contacts",
validator: {
$and: [
{year_of_birth: {$lte: 1994}},
{$or: [
{phone: { $type: "string"}},
{email: { $type: "string"}}
]}]
}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment