- Reference >
mongosh
Methods >- Cursor Methods >
- cursor.showRecordId()
cursor.showRecordId()¶
On this page
-
cursor.
showRecordId
()¶ Important
mongosh
MethodThis page documents a
mongosh
method. This is not the documentation for a language-specific driver such as Node.js.For MongoDB API drivers, refer to the language-specific :driver:`MongoDB driver documentation </>`.
For the legacy
mongo
shell documentation, refer to the documentation for the corresponding MongoDB Server release:Changed in version 3.2: This method replaces the previous
cursor.showDiskLoc()
.Modifies the output of a query by adding a field
$recordId
to matching documents.$recordId
is the internal key which uniquely identifies a document in a collection. It has the form:Returns: A modified cursor object that contains documents with appended information describing the internal record key.
Example¶
The following operation appends the showRecordId()
method to the db.collection.find()
method in order to include
storage engine record information in the matching documents:
The operation returns the following documents, which include the $recordId
field:
You can project the added field $recordId
, as in the
following example:
This query returns only the _id
field and the $recordId
field in the matching documents: