My collection is pretty big and it has many items and my goal is to increase performance. Therefore, I want query specific fields from my collection, instead of querying the whole collection and filter it’s items later (which I know how to do with JS).
@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).