Search.../

query

Returns the CommentsQueryBuilder object used to get the current results.

Description

Use query to create and run a new query by chaining additional CommentsQueryBuilder functions to it. You can filter only on properties that haven't already been used in the previous CommentsQueryBuilder.

Was this helpful?

Get query that produced the current result

Copy Code
1const originalQuery = results.query;
2
Perform a query and get query from the result

Copy Code
1import { comments } from 'wix-comments.v2';
2
3export async function myQueryFunction() {
4 const results = await comments.queryComments().find();
5
6 return results.query;
7}
8