MCPcopy Create free account
hub / github.com/Automattic/mongoose / applyQueryMethods

Function applyQueryMethods

lib/model.js:5149–5153  ·  view source on GitHub ↗

* Register custom query methods for this model * * @param {Model} model * @param {Schema} schema * @api private

(model, methods)

Source from the content-addressed store, hash-verified

5147 */
5148
5149function applyQueryMethods(model, methods) {
5150 for (const i in methods) {
5151 model.Query.prototype[i] = methods[i];
5152 }
5153}
5154
5155/**
5156 * Subclass this model with `conn`, `schema`, and `collection` settings.

Callers 1

model.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected