I want to query the comments, and I do not want to receive deleted comments.
Currently, i deleted few comments but while doing the query, I still receive it and need to filter it on the frontend.
Is there a way to achieve this while querying?
const comments = CommentRepository.queryComments({
referenceType: 'content',
referenceId: referenceIdTest,
});
The docs don’t mention any filters, I am using https://docs2.amity.co/ this link, am I using the wrong docs?
Is there proper documentation on queries and parameters I can pass? also, will there be support for types to use with typescript, we need this soon!
Any suggestion or help is much appreciated.