const getUserFollowsListVM = () => {
    models.userFollow.pageSize(9);
    const userFollowsListVM = catarse.paginationVM(models.userFollow, 'created_at.desc', { Prefer: 'count=exact' });
    return h.createBasicPaginationVMWithAutoRedraw(userFollowsListVM);
};