Type alias DocumentKey<IdType>

DocumentKey<IdType>: {
    _id: IdType;
} & Record<string, unknown>

A document that contains the _id of the document created or modified by the insert, replace, delete, update operations (i.e. CRUD operations). For sharded collections, also displays the full shard key for the document. The _id field is not repeated if it is already a part of the shard key.

Type Parameters

  • IdType

Type declaration

  • _id: IdType

    The ID of the document.

Generated using TypeDoc