I am trying to update materialized path in SQLite3 database with usage of TypeORM. The table for folders (which I am updating) has both parent and parentId columns. When I update parent column, the parentId column is going to update, but not the mpath column.
I tried using both getRepository() and getTreeRepository() for update.
I am not really sure what else to add, see attached model and update method below.
Model
@Entity()
@Tree('materialized-path')
export class Folder {
@PrimaryGeneratedColumn()
id: number;
@Column({
type: 'varchar',
length: 50
})
title: string;
@TreeParent()
parent: Folder;
@TreeChildren()
children: Folder[];
@Column({
nullable: true
})
parentId: number;
Update
await connection.getTreeRepository<Folder>(Folder).update(id, {
parent: await connection.getRepository<Folder>(Folder).findOne(parentId)
});
I also tried update function, not working. but save function is ok.
Allows tree entities relations to be updated and deleted via the save function from the Repository.(refer to: https://github.com/typeorm/typeorm/pull/7156)
When you save entities using save it always tries to find an entity in the database with the given entity id (or ids). If id/ids are found then it will update this row in the database. If there is no row with the id/ids, a new row will be inserted.(refer to: https://typeorm.io/#/entities)