Paginate backward through pages
openbridge.pages.list().before(cursor)
cursor
string
pageInfo
PageListBuilder
// Get a page const currentPage = await openbridge.pages.list().limit(10) // Get previous page if (currentPage.pageInfo.hasPreviousPage) { const previousPage = await openbridge.pages .list() .limit(10) .before(currentPage.pageInfo.startCursor) }