РК
[ExceptionHandler] Data type "Array" in "CityEntity.products" is not supported by "mysql" database. +30msДобавил новое поле в CityEntity:
DataTypeNotSupportedError: Data type "Array" in "CityEntity.products" is not supported by "mysql" database.
@Column()и в сервисе тоже добавил и у меня на подобии этого:
products: Array<any>
private createCity(createCityDto: CreateCityDto): CityEntity {
return {
name,
...anotherprops,
products: [],
};
}
