If you have a wix-data query with multiple ‘where-clauses’ populated from inputfields you have to enter something in each field or use other tricks to let the query return results.
I suggest something like a third parameter that is true or false:
wixData.query(“Rhodos”)
.eq(“title”, $w(“#input1”).value, ($w(‘#input1’).value!==‘’)
.ge(“height”, height, ($w(‘#input2’).value!==‘’)
.eq(“color”, color, ($w(‘#input3’).value!==‘’)
.find()
.then( (results) => {
$w(“repeater1”).data = results.items;
}
So basically a third parameter that is true or false