useComments
useComments
is a React Hook that lets you query the comments for a given publication.
const { data, loading, hasMore, next } = useComments(args)
Usage
import { useComments } from '@lens-protocol/react-web';
function Comments() {
const {
data: comments,
loading,
hasMore,
next,
} = useComments({
commentsOf: '0x77-0x0149',
limit: 10,
});
}
Reference
useComments(args)
useComments(args)
Parameters
commentsOf: string
(required)
- The id of the publication to retrieve the comments for
observerId: string
(optional)
- The id of the profile who is running the query, usually the logged in/active profile
limit: number
(optional)
- The amount of items to return
Returns
{
data: CommentFragment[],
loading: boolean,
hasMore: boolean, // whether there are more comments after the current batch
next(): () => void, // fetches the next comments and appends to the data
}
Updated 2 days ago