Fetch Comments
This section covers how to fetch comments on the Subsocial blockchain.
Comments on the Subsocial blockchain are technically a type of post classified as Extensions. You can read more about it here.
Get replies
api.blockchain.getReplyIdsByPostId(id: AnyPostId): Promise<PostId[]>
Example:
import { idToBn } from "@subsocial/utils"
// Get reply ids (comments) by parent post id and fetch posts by ids
const replyIds = await api.blockchain.getReplyIdsByPostId(idToBn('1'))
// For getting comments use posts functions
const replies = await api.findPublicPosts(replyIds)