Mongodb – Mongoose models typing fails
i'm working with products and categories i need that product model's categories type to be an array of Category i've created these two types type Category = { parent: Category | null; // is this ok? name: String; }; type…