The Search command is working for me. I built a simple database, copy and pasted this code and when I type in a value into the search bar nothing filters.
import wixData from ‘wix-data’;
$w.onReady( function () {
//TODO: write your page related code here…
});
export function input1_keyPress(event) {
let SearchValue = $w(‘#input1’).value;
$w(‘#dataset1’).setFilter(wixData.Filter().contains(‘pos’, ‘SearchValue’))
}