Skip to content
New issue

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

fixes : Updated MonogDB > Collection and Methods > Validate #5466

Merged
Expand Up @@ -26,10 +26,10 @@ Validate a collection named "products":
db.runCommand({ validate: 'products' });
```

Validate the collection and perform a background and full check:
Validate the collection and perform a full check:

```javascript
db.runCommand({ validate: 'products', background: true, full: true });
db.runCommand({ validate: 'products', full: true });
```

## Output
Expand Down