...
You can set the offset for the query on the object
If the offset is ānā then the query will take the records ān+1ā onwards
For e.g. if there are 200 records and you set offset 100 then it will show 1 to 100th records from 101th record on listview
12. Limit
Number of the records to be queried at once
e.g. if there are 200 records of an object and you set a limit of 100 then it will query the first 100 records and show them on the List View
...