Query with a large set of results

Hi, I’m currently updating my app to use the new ParseSwift SDK. Previously I was using the PFQueryTableViewController which handled pagination of loading data.

Is there something built in with the new SDK or is it a case of using the .limit (to say 20 per time) and .skip and firing off queries as the user scrolls through the data? Any example of this would be much appreciated!

As far as I know there isnt. In javascript I use intersection observer api. It watches for the last row in the list and when it enters the viewport it calls a predefined function with a limit to add data.

Awesome, thanks for the reply. Thought this might be the case, but just wanted to check first!