Overview
Returns a function that fetches the paginated list of users the currently authenticated user follows. Each entry includes the follow record ID, the followed user’s profile, and the timestamp. For fetching another user’s following list, seeuseFetchFollowingByUserId.
Usage Example
Parameters
The hook returns a function. That function accepts:number
Page number to fetch. Defaults to
1.number
Number of results per page. Defaults to
20.Returns
Returns aPaginatedResponse containing an array of following entries:
FollowingWithFollowInfo[]
Array of following entries.
object
Pagination metadata including
currentPage, totalPages, totalCount, hasNextPage, and hasPreviousPage.Related
- useFetchFollowingByUserId — fetch another user’s following list
- useFetchFollowingCount — get total following count

