Skip to content

Commit

Permalink
docs: add namespace documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Oct 16, 2024
1 parent 94a5f24 commit ed65e4f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/operations/client_bulk_write/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ export interface ClientBulkWriteOptions extends CommandOperationOptions {

/** @public */
export interface ClientWriteModel {
/** The namespace for the write. */
/**
* The namespace for the write.
*
* A namespace is a combination of the database name and the name of the collection: `<database-name>.<collection>`.
* All documents belong to a namespace.
*
* @see https://www.mongodb.com/docs/manual/reference/limits/#std-label-faq-dev-namespace
*/
namespace: string;
}

Expand Down

0 comments on commit ed65e4f

Please sign in to comment.