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