private async Task <bool> LikedExistFromUsername(string username, string postId, string clientRefId)
        {
            if (await _likeRepository.GetLikeWithUsernameAndClientReferenceIdForPost(username, postId, clientRefId) == null)
            {
                return(false);
            }

            return(true);
        }