We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b59ecd commit 6422402Copy full SHA for 6422402
src/operations/command.ts
@@ -55,6 +55,7 @@ export interface CommandOperationOptions
55
// Admin command overrides.
56
dbName?: string;
57
authdb?: string;
58
+ /** @deprecated Will be removed in the next major version. Set writeConcern.w to 0 instead. */
59
noResponse?: boolean;
60
}
61
src/operations/run_command.ts
@@ -51,6 +51,7 @@ export class RunAdminCommandOperation<T = Document> extends AbstractOperation<T>
51
constructor(
52
public command: Document,
53
public override options: RunCommandOptions & {
54
+ /** @deprecated Will be removed in the next major version, and replaced with an option to set writeConcern.w to 0 */
bypassPinningCheck?: boolean;
0 commit comments