ironhee
Results
1
issues of
ironhee
I want to use `User_User_following` table to handle `user.followings` and `user.followers`. ``` js const User = thinky.createModel('User', { id: type.string(), }); User.hasAndBelongsToMany(User, 'followings', 'id', 'id', { type: 'followings', }); User.hasAndBelongsToMany(User,...
feature