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 6e240d4 commit 220787dCopy full SHA for 220787d
src/operations/command.ts
@@ -34,8 +34,8 @@ export interface CollationOptions {
34
/** @public */
35
export interface CommandOperationOptions
36
extends OperationOptions,
37
- WriteConcernOptions,
38
- ExplainOptions {
+ WriteConcernOptions,
+ ExplainOptions {
39
/** Specify a read concern and level for the collection. (only MongoDB 3.2 or higher supported) */
40
readConcern?: ReadConcernLike;
41
/** Collation */
@@ -59,6 +59,10 @@ export interface CommandOperationOptions
59
// Admin command overrides.
60
dbName?: string;
61
authdb?: string;
62
+ /**
63
+ * @deprecated
64
+ * This option is deprecated and will be removed in an upcoming major version.
65
+ */
66
noResponse?: boolean;
67
}
68
0 commit comments