Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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

...