im trying to use this function, i have values between 3,000 - 5,500,000, and it seems that
the system can not distinguish between differences in the number of zeros. For example, if I have an item with a value of 12,000 and I put the search values between 3,000-15,000, no results appear, but if I enter the 10,000 - 15,000 values I will see the result I am looking for(12,000) . The same thing happens if I put in the 1,000,000 - 1,500,000 values, I have an item of 1,300,000 and the search shows a result of the 12,000 item.
this is my search code :
export function search () {
let nDataV = wixData.query(‘apartments’);
nDataV.contains('name', $w("#searchBar").value)
.or(nDataV.contains('nighberhood', $w("#searchBar").value))
.and(nDataV.contains('typeSOrR', $w("#typeBar2").value))
.and(nDataV.contains('type', $w("#typeBar").value))
//// Neither ge, le or between works
.between('price1', $w("#minPrice").value, $w("#maxPrice").value)
//( .and(nDataV.ge(‘price1’, $w(“#minPrice”).value))
// .and(nDataV.le(‘price1’, $w(“#maxPrice”).value))
.and(nDataV.ge(‘rooms1’, $w(“#minRooms”).value))
.and(nDataV.le(‘rooms1’, $w(“#maxRooms”).value))
.and(nDataV.ge(‘floor1’, $w(“#minFloor”).value))
.and(nDataV.le(‘floor1’, $w(“#maxFloor”).value))
.find()
.then(res => {
$w('#repeater1').data = res.items
if (res !== null ) {
$w("#repeater1").expand();
}});
}