WixData - How to exclude properties from retrieved items?

@tisan1 Bad idea! This won’t give you any performance-improvements.

But what you can do is to query in little steps, what do i mean?

Instead of queriying 1000-Queries (which is also by the way the max.), you could do smaler queries, for example 50-Queries (including just 50-items) and if needed you just load next 50 ones and so on…

For example in REPETERS this functionality is very desired! Called → Infinite-Scrolling —> where you seemingly can scroll all your repeated items in an infinite loop inside your repeater showing all items out of your DB (no matter how much items are in your DB).

The 3 main-code-parts for you would be…

  1. .skip(50);
  2. .limit(50);
  3. promisseAll()