Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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) }