UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

17 lines (15 loc) 747 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when relation has array initialized which is forbidden my ORM. * * @see https://github.com/typeorm/typeorm/issues/1319 * @see http://typeorm.io/docs/Relations/relations-faq/#avoid-relation-property-initializers */ export class InitializedRelationError extends TypeORMError { constructor(relation) { super(`Array initializations are not allowed in entity relations. ` + `Please remove array initialization (= []) from "${relation.entityMetadata.targetName}#${relation.propertyPath}". ` + `This is ORM requirement to make relations to work properly. Refer docs for more information.`); } } //# sourceMappingURL=InitializedRelationError.js.map