Overview
useFetchCommentReactionsWrapper is a stateful wrapper around useFetchCommentReactions that manages pagination and reaction list state for you. Use it to build “who reacted” UIs for comments — for example, a popover showing users who liked a specific comment.
By default the hook does not fetch on mount. Set autoFetch: true to start fetching immediately, or call refetch() manually when you’re ready (e.g., when a popover opens).
Usage Example
Parameters
The comment to fetch reactions for.
Number of reactions per page. Default:
20.Filter to a specific reaction type. When omitted, all reaction types are returned.
Sort direction by creation date. Default:
"desc".If
true, fetch automatically on mount. Default: false.Returns
The current list of fetched reactions. Appended to on each
loadMore call.true while fetching the initial page or loading more.true if additional pages are available.Load the next page of reactions. Appends to the existing list.
Reset and re-fetch from page 1.

