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 articles
openbridge.articles.list().before(cursor)
cursor
string
pageInfo
ArticleListBuilder
// Get a page const currentPage = await openbridge.articles.list().limit(10) // Get previous page if (currentPage.pageInfo.hasPreviousPage) { const previousPage = await openbridge.articles .list() .limit(10) .before(currentPage.pageInfo.startCursor) }