Overview
Returns a function that fetches the paginated list of users who follow the currently authenticated user. Each entry includes the follow record ID, the follower’s user profile, and the timestamp. For fetching another user’s followers, seeuseFetchFollowersByUserId.
Usage Example
Parameters
The hook returns a function. That function accepts:Page number to fetch. Defaults to
1.Number of results per page. Defaults to
20.Optional search term. Filters the list to users whose username or name contains this text (case-insensitive). When omitted, no filtering is applied.
Restricts which field
query matches against — username or name. When omitted, query matches either field.Returns
Returns aPaginatedResponse containing an array of follower entries:
Array of follower entries.
Pagination metadata including
currentPage, totalPages, totalCount, hasNextPage, and hasPreviousPage.Related
- useFetchFollowersByUserId — fetch another user’s followers
- useFetchFollowersCount — get total follower count

