How do I do that, this is the query I’m running which is using wix data:
import wixData from “wix-data” ;
function query_Data(){
wixData.query( “Applications” )
.eq( “applicantEmail” , $w( “#input1” ).value)
.find()
.then(res => {
console.log(res)
$w( “#table1” ).rows = res.items;
if (res.totalCount === 0 ){
$w( ‘#text26’ ).show();
}
else {
$w( “#table1” ).expand();
}
});
}