Skip to main content

Fetch Comment

The LikeMinds React feed SDK provides feature to fetch Comment. Elevate user interaction in your react app with by integrate a powerful and customizable comment section that encourages dynamic conversations among users.

Steps to fetch a comment

  1. Use the getComments() function provided by the lmFeedClient object created earlier.
  2. Create an instance of GetCommentsRequest, as shown in the snippet and pass it to the above method.
  3. Use the response as per your requirement
try {
const GetCommentsRequest = GetCommentsRequest.builder()
.setPostId("<ENTER_POST_ID>") // id of the post on which member has commented
.setCommentId("<ENTER_COMMENT_ID>")
.setPage(1)
.setPageSize(10)
.build();
const response = await lmFeedClient.getComments(GetCommentsRequest);
// Use the response as per your requirement.
} catch (error) {
// Use the error as per your requirement.
}
note

Same function can be used to fetch a reply as well. Just pass the id of the reply as comment id.

Models

GetCommentRequest

VARIABLETYPEDESCRIPTIONOPTIONAL
postIdstringPost ID of the comment fetched.
commentIdstringID of the comment fetched.
pageintPage number of paginated replies on comment.
pageSizeintPage size for paginated creplies on comment.

GetCommentResponse

VARIABLETYPEDESCRIPTIONOPTIONAL
commentReplyObject of the added comment.
usersRecord<string, User>Map of user unique id to user object.✔️