Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

131
Vistas
TypeORM how to untie an entity from an entity

I have an entity Article, and I would like to unbind all Tag [] from the entity when updating, how can I unbind all tags from the record without removing the tags

Article Entity:

@Entity()
export class Article implements Likeable, Viewable {
  @PrimaryColumn()
  id: string;

  @Column()
  title: string;

  @Column({ type: 'text' })
  content: string;

  @Column('uuid')
  authorId: string;

  @Column('uuid', { nullable: true })
  coverImageId?: string;

  @Column('uuid', { nullable: true })
  imageId?: string;

  @Column('uuid', { nullable: true })
  artId?: string;

  @ManyToMany(() => Tag, { eager: true })
  @JoinTable()
  tags: Tag[];

  @Column()
  createdAt: Date;
}

Tag entity:

@Entity()
export class Tag {
  @PrimaryColumn()
  id: string;
  @Column()
  name: string;
}

update method

async update(articleId: string, body: UpdateArticle, userId: string): Promise<void> {
    const article = await this.articleRepository.findOne(articleId);
    .....
    let tags: Tag[];
    if (body.tags) {
      // unlink all tags from the post
      await this.tagService.saveNonExistent(body.tags);
      tags = await this.tagRepository.findAllByNames(body.tags);
    }
......
    await this.articleRepository.save(article);
  }

Is there any method for cleaning up collections?

Thanks in advance for your answer!

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda