Ejemplo n.º 1
0
        public async Task <ActionResult <ResponseWrapper> > GetFollowersAsync(Guid userId, [FromQuery] PagingParameters pagingParameters)
        {
            var followers = await _userQueries.GetFollowersAsync(userId, pagingParameters);

            return(Ok(PagedResponseWrapper.CreateOkPagedResponseWrapper(followers)));
        }