-
I have a codebase with models that are defined like so:
```ts
export class Property extends DbTenantBaseClass {
@prop()
units?: Ref[];
constructor(init: Property) {
super(init);
…
-
i use typegoose, express, typescript in
this my schema and model:
```
import {
getModelForClass,
index,
modelOptions,
plugin,
prop,
} from "@typegoose/typegoose";
import { Base…
-
Hi! I was looking for an alternative to [mongoose-delete](https://npm.im/mongoose-delete) because i started migrating my models to typegoose. SO i came across this plugin and found it interesting.
I …
-
Hi guys,
Can anyone assist how this can be configured with nestjs-typegoose, since it pretty much wrapped around mongoose.
-
I won't go over all of [typegoose]'s selling points here (feel free to do so yourself) however the biggest benefit it offers is the ability to not have to duplicate your type definitions for typescrip…
-
Thanks for making a fork of this project! It's too good not to continue.
I have a couple things layered on top of nestjs-query which enhances typegoose experience:
- subdocument query
- subdocu…
-
https://github.com/kpfromer/nestjs-typegoose/issues/433 The author of the nestjs-typegoose package unsupporting it. Better redo without this package.
-
![image](https://github.com/mongoosejs/mongoose-lean-virtuals/assets/23348616/32617f6e-f615-4f15-8f7f-2927a02b7176)
In typegoose,
i want to no typing '{ virtuals : true }' but plugin can auto le…
-
### Describe the Bug (버그 설명)
On a new generation, running
`npm run test` fails
Also noticed that the test command doesnt set the env to "test" so i changed it to `"test": "cross-env NODE_ENV=test…
-
Typegoose allows sharing of types between back-end and front-end. But it requires Mongose on client side for no reason.
So Mongoose is embedded inside the client bundle. Hence packages as Buffer. …