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