PagedData.pageRanges
Property Description |
An of query.PageRange objects that holds page index and page size information as key value pairs for query results. |
Type |
|
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2018.1 |
Syntax
Important:
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/query Module Script Samples.
// Add additional code
...
var myCustomerQuery = query.create({
type: query.Type.CUSTOMER
});
myCustomerQuery.columns = [
myCustomerQuery.createColumn({
fieldId: 'entityid'
})
];
var myPagedResults = myCustomerQuery.runPaged({
pageSize: 10
});
var iterator = myPagedResults.iterator();
iterator.each(function(resultPage) {
var currentPage = resultPage.value;
var currentPagedData = currentPage.pagedData;
var thePageRanges = currentPagedData.pageRanges;
return true;
});
...
// Add additional code