Self-Referencing ManyToMany Relationship TypeORM
问题 I have just started using TypeORM and I'm struggling getting the following relationship to work: User->Friends, whereas a Friend is also a User Object. My getters, getFriends & getFriendsInverse are working, however; I do now want to distinguish between the two. In other words; when I perform a mysql join I do not want to do a left join on friends and another one on inverseFriends. The getter getFriends() needs to return all friends, regardless of which "side" the object I'm on. Does that