Skip to main content

Overview

Returns a function that fetches the paginated list of accepted connections for the currently authenticated user. Each entry includes the connected user’s profile and timestamps. For fetching another user’s connections, see useFetchConnectionsByUserId.
Users with a block between them and you, in either direction, are excluded from the results. Requires the moderation bundle.

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.
string
Optional search term. Filters the list to connections whose connected user’s username or name contains this text (case-insensitive). When omitted, no filtering is applied.
string
Restricts which field query matches against — username or name. When omitted, query matches either field.

Returns

Returns a PaginatedResponse containing an array of established connections:
EstablishedConnection[]
Array of accepted connection entries.
object
Pagination metadata including page, pageSize, totalPages, totalItems, and hasMore.