User Follower
'/users/{id}/followers'
GET
async getAll(
@param.path.string('id') id: string,
@param.query.object('filter') filter?: Filter<User>,
): Promise<User[]>'/users/{id}/followers/{followerId}'
GET
async find(
@param.path.string('id') id: typeof User.prototype.id,
@param.path.string('followerId') followerId: typeof User.prototype.id,
): Promise<User>POST
DEL
Last updated