Table pagination
The table pagination parameters are used to determine the contents of tables:
- {skip}: The number of entries to ignore before populating the table. The number must be an integer that is larger than or equal to 0.
- {take}: The number of entries to return in the table. The number must be an integer that is larger than or equal to 0. If 0, all entries are returned, except for the ones ignored using {skip}.
- {sortColumn}: The property to use for sorting. The property is specified as a string.
- {orderAscending}: Boolean value that determines if ascending sort order is to be used.