'TypeORM data type Object is not supported by mysql database error (NestJS)
When starting my NestJS application I am getting the following vague error:
Data type "Object" in "MyEntity.undefined" is not supported by "mysql" database.
But MyEntity was deleted from my application. How do I solve this error?
Solution 1:[1]
The entity still exists in the build output. To solve this, remove your dist folder and restart your app.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Duncan Lukkenaer |
