Search.../

query

Returns the TasksQueryBuilder object used to get the current results.

Description

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

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 { tasks } from 'wix-crm.v2';
2
3export async function myQueryFunction() {
4 const results = await tasks.queryTasks().find();
5
6 return results.query;
7}
8