Skip to content
Advertisement

Create query builder that the source table (FROM) is a join table in TypeORM

I’m trying to implement the following SQL in TypeORM using QueryBuilder:

The entities are:

When you create a query builder you have to use some entity or table but the join table is “hidden” by TypeORM


I know I can replace the inner join table order and it will solve the problem but I’m looking for when the source table is the join table

Advertisement

Answer

If you don’t want to use the generated name just specify explicitly the join table name

And then:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement