Search...
Get the query that produced a query result
Code Example
1let resultQuery = results.query;
Perform a query and get the query that produced the result
Code Example
1import wixData from 'wix-data';23// ...45wixData.query("myCollection")6 .find()7 .then( (results) => {8 let resultQuery = results.query;9 } ) ;