This commit is contained in:
2026-04-02 17:50:10 +08:00
parent 60697d80be
commit ce0aa4f789
373 changed files with 82520 additions and 46 deletions

View File

@@ -0,0 +1,34 @@
'use strict';
/*!
* ignore
*/
module.exports = function addIdGetter(schema) {
// ensure the documents receive an id getter unless disabled
const autoIdGetter = !schema.paths['id'] &&
schema.paths['_id'] &&
schema.options.id;
if (!autoIdGetter) {
return schema;
}
if (schema.aliases?.id) {
return schema;
}
schema.virtual('id').get(idGetter);
return schema;
};
/**
* Returns this documents _id cast to a string.
* @api private
*/
function idGetter() {
if (this._id != null) {
return this._id.toString();
}
return null;
}