Gets the next dynamic page URL.
The getNextDynamicPage()
function can only be called on a dynamic page
dataset.
The function returns a Promise that is resolved to the relative URL of the
next dynamic page or null
if there is no next page.
The next page is determined by the lexicographical order of the dynamic page relative URLs. You can see all of the relative URLs for a dynamic page by viewing the collection connected to the page.
URLs for items that do not match the dataset's filters are not returned.
For example, consider the following situation:
If Bob is not an active employee, when you call getNextDynamicPage()
from Alice's page, the returned Promise will resolve to "employees/Cathy"
.
Pass the returned URL to the to()
function to
navigate to the next dynamic page.