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