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 94a5f24 commit ed65e4fCopy full SHA for ed65e4f
src/operations/client_bulk_write/common.ts
@@ -27,7 +27,14 @@ export interface ClientBulkWriteOptions extends CommandOperationOptions {
27
28
/** @public */
29
export interface ClientWriteModel {
30
- /** The namespace for the write. */
+ /**
31
+ * The namespace for the write.
32
+ *
33
+ * A namespace is a combination of the database name and the name of the collection: `<database-name>.<collection>`.
34
+ * All documents belong to a namespace.
35
36
+ * @see https://www.mongodb.com/docs/manual/reference/limits/#std-label-faq-dev-namespace
37
+ */
38
namespace: string;
39
}
40
0 commit comments