Overview
useFetchManyComments returns a function that fetches a paginated list of comments. This is the underlying fetch function used by useEntityComments and useReplies. Use it directly when you need a custom comment list outside of those hooks.
Usage Example
Parameters
Page number (1-indexed). Must be greater than 0.
Filter to comments on a specific entity.
Filter to comments by a specific user.
Filter to replies of a specific parent comment.
Sort order:
"top", "new", or "controversial".Results per page. Must be greater than 0.
Filter to comments within a specific source.
Populate related data. Accepted values:
"user", "entity", "space", "parent".Returns
Comments for the current page.
Whether there are more pages to load.

