Sequelize - double joining table on two IDs
问题 If I have a "Users" table and a "Followings" table ("Followings" has UserId and FollowedId, both refer to users on the "Users" table) "Followings" is basically when one user "follows" another user How do I set up the associations so that when I use the Followings Model to query and include the Users model, it will include nested info for BOTH columns? Example: Users | id | name | email | etc | Followings | id | UserId | FollowedId | UserId and FollowedId are both assciated to users on "Users"