const getUserFollowersListVM = () => {
    models.userFollower.pageSize(9);
    const userFollowersListVM = catarse.paginationVM(models.userFollower, 'following.asc,created_at.desc', { Prefer: 'count=exact' });
    return h.createBasicPaginationVMWithAutoRedraw(userFollowersListVM);
};