I have this query that I tested in the query tool, and I now wish to apply this into Typeorm syntax I have tried this approach but it’s not 100% correct: Answer Assuming your class defined for the entity menu_entry is MenuEntry, typeorm query statement would be as follows-
Tag: nestjs
EntityColumnNotFound: No entity column “authors” was found. many to many relations on TypeORM and NestJS
I am trying to get the books per user from the get request I have the following problem, it turns out that I am doing a many-to-many relationship but it indicates that the authors entity was not found,…