How does the pagination work with Data Source ?SummaryQuestion: 1. How does the pagination feature work in the data sources? 2. When does it stop requesting records ? 3. How does it calculate the next pagination step? 4. Where does the 'count' come from? Does it count the values in the array (arrary.length) Or does it look for the field “count” in the json response? Answer : 1. We only support Limit/Offset based pagination in data source. 2. It stops requesting records when API response payload record count is less than limit 3. Next page is calculated by adding limit to offset 4. Yes 'count' is the number of records i.e array.length.