Helper type to easily set the this type in a QueryHelper function
this
function findById(this: QueryHelperThis<typeof YourClass, YourClassQueryHelpers>, id: string) { return this.findOne({ _id: id });} Copy
function findById(this: QueryHelperThis<typeof YourClass, YourClassQueryHelpers>, id: string) { return this.findOne({ _id: id });}
Helper type to easily set the
thistype in a QueryHelper function