Limit items on repeater without a dataset

—> .skip()
—> .limit()

add this two to your QUERY…

wixData.query()
.eq(DB, dbField)
.find()
.then((res)=>{
	let items = res.items;
	if(items) {console.log("Data-found...");		
		console.log(items);
	}
	else {console.log("No data found!);}
})
.catch((err)=>{console.log(err);});
wixData.query()
.limit()
.skip()
.eq(DB, dbField)
.find()
.then((res)=>{
	let items = res.items;
	if(items) {console.log("Data-found...");		
		console.log(items);
	}
	else {console.log("No data found!);}
})
.catch((err)=>{console.log(err);});