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) }