Hi I am filtering through my store which has over 250 items and im looking in the description for what i have selected in my dropdown. Which does work, however the results from .find() are limited to 50 items. i need to either search all items in the products or a way to iterate through in blocks of 50. Can someone help.
export function button81_click(event) {
wixData.query("Stores/Products")
.find()
.then((results) => {
console.log('results', results) // limits to 50 items
const data = results.items.filter(f =>
f.description.includes($w('#dwnMake').value) &&
f.description.includes($w('#dwnModel').value) &&
f.description.includes($w('#dwnYear').value)
)
console.log('data', data)
$w("#repeater2").data = data
});
}